16 lines
547 B
PHP
16 lines
547 B
PHP
<?php
|
|
|
|
use App\Livewire\Auth\OperatorLogin;
|
|
use App\Livewire\Auth\OperatorTwoFactorChallenge;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
| The console's own front door.
|
|
|
|
|
| Registered before the authenticated console routes so that /login on the
|
|
| console host resolves here, and NOT to the portal's sign-in page — which is
|
|
| what put a "Registrieren" link in front of an operator and a 404 behind it.
|
|
*/
|
|
Route::get('/login', OperatorLogin::class)->name('login');
|
|
Route::get('/two-factor', OperatorTwoFactorChallenge::class)->name('two-factor');
|