Add password reset

This commit is contained in:
pikiou
2022-01-05 02:05:07 +01:00
parent 395955f32a
commit adde4f366e
35 changed files with 459 additions and 178 deletions

View File

@@ -5,6 +5,7 @@ import AsyncHome, { loadData as loadHomeData } from "../pages/Home"
import AsyncWish, { loadData as loadWishData } from "../pages/Wish"
import AsyncVolunteerPage, { loadData as loadVolunteerPageData } from "../pages/VolunteerPage"
import Login from "../pages/Login"
import Forgot from "../pages/Forgot"
import Register from "../pages/Register"
import NotFound from "../pages/NotFound"
@@ -26,6 +27,10 @@ export default [
path: "/login",
component: Login,
},
{
path: "/forgot",
component: Forgot,
},
{
path: "/home",
component: AsyncHome,