Member authorization got moved to the member repo class a long time ago, so AuthController was a leftover when that process was handled by something else moved dashboard login/logout to DashController and got rid of AuthController as it's not necessary anymore
15 lines
No EOL
800 B
PHP
15 lines
No EOL
800 B
PHP
<section class="login">
|
|
<div>
|
|
<img alt="fipamo logo" id="the-logo" class="logo-medium" src="/assets/images/global/fipamo-logo-secondary.svg" />
|
|
</div>
|
|
<form action="/dashboard/login" method="post" enctype="multipart/form-data">
|
|
<label class="inline">handle</label><input class="input-light" type="text" name="handle" class="inline" placeholder="Handle" required />
|
|
<label class="inline">password</label><input class="input-light" type="password" name="password" class="inline" placeholder="Password" required />
|
|
@if($errors->any())
|
|
<input type="submit" value="{{$errors->first()}}" name="submit_button">
|
|
@else
|
|
<input type="submit" value="Knock Knock" name="submit_button">
|
|
@endif
|
|
@csrf
|
|
</form>
|
|
</section> |