reset totp
This commit is contained in:
parent
7d28710157
commit
76bb7f8da5
8 changed files with 265 additions and 24 deletions
|
@ -40,6 +40,24 @@ const router = createRouter({
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/reset",
|
||||
name: "reset",
|
||||
component: () => import("@/views/RouterView.vue"),
|
||||
children: [
|
||||
{
|
||||
path: "",
|
||||
name: "reset-start",
|
||||
component: () => import("@/views/reset/Start.vue"),
|
||||
},
|
||||
{
|
||||
path: "reset",
|
||||
name: "reset-reset",
|
||||
component: () => import("@/views/reset/Reset.vue"),
|
||||
props: (route) => ({ mail: route.query.mail, token: route.query.token }),
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/admin",
|
||||
name: "admin",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue