fipamo/resources/views/forms/login.blade.php
ro 5300c91058
moved login/logout to dash; removed AuthController
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
2025-05-17 08:03:46 -06:00

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>