diff --git a/.gitignore b/.gitignore
index a547bf3..198a888 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,10 +7,11 @@ yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
+# dependencies
node_modules
+
dist
dist-ssr
-*.local
# Editor directories and files
.vscode/*
@@ -22,3 +23,17 @@ dist-ssr
*.njsproj
*.sln
*.sw?
+
+# environment variables
+.env
+
+# jetbrains setting folder
+.idea/
+
+# Playwright
+/test-results/
+/playwright-report/
+/blob-report/
+/playwright/.cache/
+
+
diff --git a/src/layouts/Layout.tsx b/src/layouts/Layout.tsx
index dc45db4..46e82d0 100644
--- a/src/layouts/Layout.tsx
+++ b/src/layouts/Layout.tsx
@@ -18,6 +18,10 @@ const routes = [
path: '/register',
component: lazy(() => import('../pages/RegisterPage/Register.tsx')),
},
+ {
+ path: '/login',
+ component: lazy(() => import('../pages/LoginPage/Login.tsx')),
+ },
]
render(() => {routes}, root!)
diff --git a/src/pages/IndexPage/Index.tsx b/src/pages/IndexPage/Index.tsx
index 2e1f1ff..961f300 100644
--- a/src/pages/IndexPage/Index.tsx
+++ b/src/pages/IndexPage/Index.tsx
@@ -33,7 +33,7 @@ export default () => {
-
+
diff --git a/src/pages/LoginPage/Login.sass b/src/pages/LoginPage/Login.sass
new file mode 100644
index 0000000..e69de29
diff --git a/src/pages/LoginPage/Login.tsx b/src/pages/LoginPage/Login.tsx
new file mode 100644
index 0000000..5d48c95
--- /dev/null
+++ b/src/pages/LoginPage/Login.tsx
@@ -0,0 +1,42 @@
+import './Login.sass'
+import { Logo, Link, Page, Row, Padding, Form, Box } from '../../components'
+import { IoChevronBack } from 'solid-icons/io'
+
+export default () => {
+ return (
+ <>
+
+
+
+
+
+
+ OCBO e-Sign
+
+
+
+
+
+
+ Back
+
+
+
+
+
+
+
+
+ Login
+
+
+
+
+
+
+
+ >
+ )
+}