2024-03-02 01:16:24 +01:00
|
|
|
<section class="login">
|
|
|
|
<div>
|
|
|
|
<img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/>
|
|
|
|
</div>
|
2024-03-03 20:48:22 +01:00
|
|
|
<form action="/login" method="post" enctype="multipart/form-data">
|
|
|
|
@csrf
|
2024-03-02 01:16:24 +01:00
|
|
|
<input type="text" name="handle" class="form-control" placeholder="Handle" required/>
|
|
|
|
<input type="password" name="password" class="form-control" placeholder="Password" required/>
|
2024-03-03 20:48:22 +01: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-03-02 01:16:24 +01:00
|
|
|
<a href="/dashboard/reset-password">?</a>
|
2024-03-03 20:48:22 +01:00
|
|
|
|
2024-03-02 01:16:24 +01:00
|
|
|
</form>
|
|
|
|
</section>
|