implemented some login stuff.

This commit is contained in:
sockenklaus
2023-07-04 01:08:21 +02:00
parent 7a2b63ee07
commit f98fc36e51
11 changed files with 124 additions and 40 deletions

View File

@@ -23,7 +23,7 @@ import type { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
Route.get('/', 'HomeController.index')
Route.get('/login', async({inertia, response}: HttpContextContract) =>{
Route.get('/login', async({inertia}: HttpContextContract) =>{
return inertia.render('Login')
})