Skip to content

Commit

Permalink
Merge pull request #51 from MuhammadKhalilzadeh/009-oct-6-signup-signin
Browse files Browse the repository at this point in the history
009 oct 6 signup signin
  • Loading branch information
MuhammadKhalilzadeh authored Oct 8, 2024
2 parents 1e38ca9 + 3ef4192 commit 4f1c53a
Show file tree
Hide file tree
Showing 20 changed files with 1,054 additions and 100 deletions.
2 changes: 1 addition & 1 deletion Clients/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>VerifyWise</title>
</head>
<body>
<div id="root"></div>
Expand Down
10 changes: 9 additions & 1 deletion Clients/public/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion Clients/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ import Home from "./presentation/pages/Home";
import ComplianceTracker from "./presentation/pages/ComplianceTracker";
import Assessment from "./presentation/pages/Assessment";
import Vendors from "./presentation/pages/Vendors";
import Setting from "./presentation/pages/Setting";
import Setting from "./presentation/pages/Settings";
import Team from "./presentation/pages/Team";
import RegisterAdmin from "./presentation/pages/Authentication/RegisterAdmin";
import RegisterUser from "./presentation/pages/Authentication/RegisterUser";
import Login from "./presentation/pages/Authentication/Login";
import ForgotPassword from "./presentation/pages/Authentication/ForgotPassword";
import ResetPassword from "./presentation/pages/Authentication/ResetPassword";
import SetNewPassword from "./presentation/pages/Authentication/SetNewPassword";
import ResetPasswordContinue from "./presentation/pages/Authentication/ResetPasswordContinue";

function App() {
const mode = useSelector((state: any) => state.ui?.mode || "light");
Expand All @@ -27,6 +34,16 @@ function App() {
<Route path="/setting" element={<Setting />} />
<Route path="/team" element={<Team />} />
</Route>
<Route path="/admin-reg" element={<RegisterAdmin />} />
<Route path="/user-reg" element={<RegisterUser />} />
<Route path="/login" element={<Login />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/set-new-password" element={<SetNewPassword />} />
<Route
path="/reset-password-continue"
element={<ResetPasswordContinue />}
/>
</Routes>
</ThemeProvider>
);
Expand Down
3 changes: 3 additions & 0 deletions Clients/src/presentation/assets/icons/check-outlined.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Clients/src/presentation/assets/icons/email.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Clients/src/presentation/assets/icons/key.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Clients/src/presentation/assets/icons/left-arrow-long.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4f1c53a

Please sign in to comment.