first steps on login form

This commit is contained in:
Sockenklaus
2023-07-01 14:31:28 +02:00
parent 1d2e76132d
commit ca20ca1faf
4 changed files with 41 additions and 10 deletions

View File

@@ -23,3 +23,7 @@ import Route from '@ioc:Adonis/Core/Route'
Route.get('/', async ({ inertia }) => {
return inertia.render('Home')
})
Route.get('/Login', async({inertia}) =>{
return inertia.render('Login')
})