Allow users to create accounts and securely access the application

Adds user registration functionality and updates login logic in LoginPage.tsx.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 556aa286-edd2-4cea-8583-f4fc3cfd119b
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/81470e0d-8ae8-4335-9301-cd9a69e670fa/96467e4f-00f2-4d88-82b1-142a9b24784c.jpg
This commit is contained in:
ghaddaditw
2025-05-30 17:32:21 +00:00
parent f3bcfb573a
commit 3b3838fc4f
4 changed files with 48 additions and 13 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ function Router() {
<Switch>
<Route path="/" component={LandingPage} />
<Route path="/login" component={LoginPage} />
{/* <Route path="/onboarding" component={OnboardingPage} /> */}
<Route path="/register" component={LoginPage} />
<Route path="/dashboard" component={DashboardPage} />
<Route component={NotFound} />
</Switch>