NEW: Reset Password Page

This commit is contained in:
EvanLin3141
2025-02-06 15:28:25 +00:00
parent eb83fd297a
commit af71f63873
6 changed files with 169 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ function App() {
<Route path="/:streamerName" element={<StreamerRoute />} />
<Route path="/user/:username" element={<UserPage />} />
<Route path="/reset_password/:token" element={<ForgotPasswordPage />}></Route>
<Route path="/reset_password" element={<ForgotPasswordPage />}></Route>
<Route path="/category/:category_name" element={<CategoryPage />}></Route>
<Route path="*" element={<NotFoundPage />} />