From db18fcba2e00b86a4f56a3b9637680d7f96fbff9 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 24 Sep 2025 17:14:13 +0800 Subject: [PATCH 1/3] Updated gitignore --- .gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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/ + + From b2ff432a8096a7fe28cee58e3c01b558461adbec Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 24 Sep 2025 17:14:25 +0800 Subject: [PATCH 2/3] Added login page --- src/layouts/Layout.tsx | 4 ++++ src/pages/LoginPage/Login.sass | 0 src/pages/LoginPage/Login.tsx | 42 ++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 src/pages/LoginPage/Login.sass create mode 100644 src/pages/LoginPage/Login.tsx 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/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 + +
+

Role

+
+
+
+
+
+
+ + ) +} From b0cd9a4f94fab8eda0592f6f5c0992b3dec8cee2 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Wed, 24 Sep 2025 17:14:35 +0800 Subject: [PATCH 3/3] Added link to login page --- src/pages/IndexPage/Index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () => { -