From 848016d0cbc68cccc9253e6a040d0c812814ffeb Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Fri, 23 Apr 2021 18:26:02 +0100 Subject: [PATCH] Add auth pages ui --- src/pages/Auth/AdditionalInfo/index.tsx | 99 +++++++++++++++++++++ src/pages/Auth/AdditionalInfo/styles.ts | 5 ++ src/pages/Auth/ForgotPassword/index.tsx | 98 +++++++++++++++++++++ src/pages/Auth/ForgotPassword/styles.ts | 3 + src/pages/Auth/Login/index.tsx | 110 +++++++++++++++++++++++ src/pages/Auth/Login/styles.ts | 7 ++ src/pages/Auth/RecoverAccount/index.tsx | 97 ++++++++++++++++++++ src/pages/Auth/RecoverAccount/styles.ts | 3 + src/pages/Auth/Signup/index.tsx | 112 ++++++++++++++++++++++++ src/pages/Auth/Signup/styles.ts | 7 ++ src/pages/index.tsx | 7 ++ 11 files changed, 548 insertions(+) create mode 100644 src/pages/Auth/AdditionalInfo/index.tsx create mode 100644 src/pages/Auth/AdditionalInfo/styles.ts create mode 100644 src/pages/Auth/ForgotPassword/index.tsx create mode 100644 src/pages/Auth/ForgotPassword/styles.ts create mode 100644 src/pages/Auth/Login/index.tsx create mode 100644 src/pages/Auth/Login/styles.ts create mode 100644 src/pages/Auth/RecoverAccount/index.tsx create mode 100644 src/pages/Auth/RecoverAccount/styles.ts create mode 100644 src/pages/Auth/Signup/index.tsx create mode 100644 src/pages/Auth/Signup/styles.ts create mode 100644 src/pages/index.tsx diff --git a/src/pages/Auth/AdditionalInfo/index.tsx b/src/pages/Auth/AdditionalInfo/index.tsx new file mode 100644 index 0000000..b7ac3a0 --- /dev/null +++ b/src/pages/Auth/AdditionalInfo/index.tsx @@ -0,0 +1,99 @@ +import { Box, Button, Input, Select, Text } from '../../../components'; +import { theme } from '../../../themes'; +import { Wrapper } from './styles'; + +const AdditionalInfo = () => { + return ( + + + + + + Tell us more about yourself + + + + {}} + /> + {}} + /> + + {}} + /> + + {}} + /> + {}} + /> + + {}} /> + {}} + /> + + +