2024-03-01 18:16:24 -06:00
|
|
|
<section class="login">
|
|
|
|
<div>
|
2025-05-17 08:03:46 -06:00
|
|
|
<img alt="fipamo logo" id="the-logo" class="logo-medium" src="/assets/images/global/fipamo-logo-secondary.svg" />
|
2024-03-01 18:16:24 -06:00
|
|
|
</div>
|
2025-05-17 08:03:46 -06:00
|
|
|
<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 />
|
2024-03-03 13:48:22 -06:00
|
|
|
@if($errors->any())
|
|
|
|
<input type="submit" value="{{$errors->first()}}" name="submit_button">
|
|
|
|
@else
|
|
|
|
<input type="submit" value="Knock Knock" name="submit_button">
|
|
|
|
@endif
|
2024-07-13 14:23:01 -06:00
|
|
|
@csrf
|
2024-03-01 18:16:24 -06:00
|
|
|
</form>
|
2025-05-17 08:03:46 -06:00
|
|
|
</section>
|