Basics of auth

This commit is contained in:
2026-01-01 10:32:17 -05:00
parent 23f2b6432b
commit 9f895bbb85
66 changed files with 5967 additions and 156 deletions

View File

@@ -0,0 +1,15 @@
import { createWebHashHistory, createRouter } from 'vue-router'
const routes = [
{ path: '/', component: () => import('../pages/login.vue') },
{ path: '/error', component: () => import('../pages/error.vue') },
{ path: '/password-reset', component: () => import('../pages/password-reset.vue') },
{ path: '/update-password', component: () => import('../pages/update-password.vue') },
]
const router = createRouter({
history: createWebHashHistory(),
routes,
})
export default router