UI reset password
This commit is contained in:
parent
2e8750a3f8
commit
8d2244d93a
3 changed files with 296 additions and 4 deletions
|
|
@ -2,7 +2,9 @@ import { createRouter, createWebHistory } from 'vue-router'
|
|||
import HomeView from '@/views/HomeView.vue'
|
||||
import MapView from '@/views/MapView.vue'
|
||||
import MainView from '@/views/MainView.vue'
|
||||
|
||||
const loginView = () => import('@/views/login.vue')
|
||||
const resetPasswordView = () => import('@/views/ResetPassword.vue')
|
||||
|
||||
import { authenticated, logout } from '@/plugins/auth'
|
||||
|
||||
|
|
@ -77,6 +79,14 @@ const router = createRouter({
|
|||
name: 'auth',
|
||||
component: () => import('@/views/auth.vue'),
|
||||
},
|
||||
{
|
||||
path: '/reset-password',
|
||||
name: 'reset-password',
|
||||
component: resetPasswordView,
|
||||
meta: {
|
||||
Auth: false,
|
||||
},
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue