userdetails,resetpass müködöképes lett

This commit is contained in:
2025-10-26 19:46:13 +01:00
parent 18110ba410
commit ab35f73158
7 changed files with 773 additions and 137 deletions
+4
View File
@@ -6,6 +6,7 @@ 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"
@@ -16,6 +17,7 @@ import ScrollToTop from "./components/ScrollToTop"
import GameScreen from "./pages/Game/GameScreen"
import Reports from "./pages/Report/Reports"
import Lobby from "./pages/Lobby/Lobby"
import ProfileCard from "./components/Userdetails/Userdetails"
import { ToastConfig } from "./components/Toastify/toastifyServices" // ✅ fontos: named import, nem default!
import VerifyEmailPage from "./pages/Auth/VerifyEmailPage"
@@ -51,6 +53,7 @@ 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 />} />
@@ -59,6 +62,7 @@ function App() {
<Route path="/verify-email" element={<EmailVerification />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/profile" element={<ProfileCard />} />
<Route path="/test" element={<Test />} />
<Route path="/" element={<Landingpage />} />
<Route path="/home" element={<Home />} />