Verification reset-password email and site corrections

This commit is contained in:
magdo
2025-10-26 23:56:52 +01:00
parent fe8d5a53a5
commit 825d7a91e2
224 changed files with 28 additions and 9251 deletions
-4
View File
@@ -2,11 +2,9 @@ import { useState, useEffect } from "react"
import { BrowserRouter as Router, Route, Routes } from "react-router-dom"
import AuthRegister from "./pages/Auth/AuthRegister"
import AuthLogin from "./pages/Auth/AuthLogin"
import EmailVerification from "./pages/Auth/EmailVerification"
import Test from "./pages/Testing/Test"
import ForgotPassword from "./pages/Auth/ForgotPassword"
import ResetPassword from "./pages/Auth/ResetPassword"
import ResetPasswordRedirect from "./pages/Auth/ResetPasswordRedirect"
import Landingpage from "./pages/Landing/Landingpage"
import Home from "./pages/Landing/Home"
import DeckManagerPage from "./pages/Decks/DeckManagerPage"
@@ -53,13 +51,11 @@ function App() {
<>
<Router>
<Routes>
<Route path="/api/auth/reset-password" element={<ResetPasswordRedirect />} />
<Route path="/verify-email" element={<VerifyEmailPage />} />
<Route path="/about" element={<About />} />
<Route path="/lobby" element={<Lobby />} />
<Route path="/register" element={<AuthRegister />} />
<Route path="/login" element={<AuthLogin />} />
<Route path="/verify-email" element={<EmailVerification />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/profile" element={<ProfileCard />} />