This commit is contained in:
2025-05-22 02:07:00 +02:00
parent 8acc7d30fc
commit e5b601e483
6 changed files with 15 additions and 1 deletions
+5
View File
@@ -4,6 +4,8 @@ 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";
function App() {
@@ -38,7 +40,10 @@ function App() {
<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="/test" element={<Test />} />
</Routes>
</Router>
);