add email signup flow
This commit is contained in:
parent
9945163a2f
commit
3dc9204979
27 changed files with 629 additions and 24 deletions
|
|
@ -5,6 +5,8 @@ use App\Http\Middleware\AuthMiddleware;
|
|||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::post('/login', [AuthController::class, 'login']);
|
||||
Route::post('/signup', [AuthController::class, 'signup']);
|
||||
Route::post('/confirm-email', [AuthController::class, 'confirmEmail']);
|
||||
|
||||
Route::middleware(AuthMiddleware::class)->group(function (): void {
|
||||
Route::get('/me', [AuthController::class, 'me']);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue