ADD: Forgot PassWord Form

This commit is contained in:
EvanLin3141
2025-02-09 01:07:30 +00:00
parent a64c7c93dc
commit e3aa6531e1
4 changed files with 97 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ import NotFoundPage from "./pages/NotFoundPage";
import UserPage from "./pages/UserPage";
import ResetPasswordPage from "./pages/ResetPasswordPage";
import CategoryPage from "./pages/CategoryPage";
import ForgotPasswordForm from "./components/Auth/ForgotPasswordForm";
function App() {
const [isLoggedIn, setIsLoggedIn] = useState(false);
@@ -43,6 +44,7 @@ function App() {
<Route path="/:streamerName" element={<StreamerRoute />} />
<Route path="/user/:username" element={<UserPage />} />
<Route path="/reset_password/:token" element={<ResetPasswordPage />}></Route>
<Route path="/forgot_password/" element={<ForgotPasswordForm />}></Route>
<Route path="/category/:category_name" element={<CategoryPage />}></Route>
<Route path="/404" element={<NotFoundPage />} />