From 0234d46ce9cbb2ce3d8f08783b33d1acb386ec4d Mon Sep 17 00:00:00 2001 From: Florian Dejonckheere Date: Tue, 21 Nov 2023 18:42:12 +0100 Subject: [PATCH] Add signin page --- index.html | 4 +- src/main.tsx | 5 ++ src/pages/auth/signin.tsx | 112 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 src/pages/auth/signin.tsx diff --git a/index.html b/index.html index beb51f8..10fc5cc 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,12 @@ - + Wattson - +
} /> + + } /> + }> }> } /> diff --git a/src/pages/auth/signin.tsx b/src/pages/auth/signin.tsx new file mode 100644 index 0000000..4587a63 --- /dev/null +++ b/src/pages/auth/signin.tsx @@ -0,0 +1,112 @@ +import { ReactElement } from 'react' +import { Link } from 'react-router-dom' +import { BoltIcon } from '@heroicons/react/24/solid' + +function Signin(): ReactElement { + return ( +
+
+
+
+
+ + Wattson +
+
+ +
+
+
+
+ +
+ +
+ +
+
+

+ Please include a valid email address so we can get back to + you +

+
+ +
+
+ +
+
+ +
+ +
+
+

+ 8+ characters required +

+
+ + +
+
+
+
+
+
+ ) +} + +export default Signin