diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 656c0ab..5cc9bf4 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -143,7 +143,7 @@ const Footer: NextPage = () => {
Site Admin Login diff --git a/src/pages/admin/login.tsx b/src/pages/admin/login.tsx new file mode 100644 index 0000000..a66a9b8 --- /dev/null +++ b/src/pages/admin/login.tsx @@ -0,0 +1,53 @@ +import { ArrowUpRightIcon } from "@heroicons/react/24/solid"; +import Footer from "~/components/Footer"; +import Header from "~/components/Header"; +import { TopLabel } from "~/components/Labels"; + +const SignInForm = () => { + return ( +
+ +

Admin Login

+
+
+
+ {/** Username section */} +
+ + +
+ + {/** Password section */} +
+ + +
+ +
+ +
+
+
+
+ ); +}; + +const AdminLogin = () => { + return ( + <> +
+
+ +
+