ro
a2053df931
logo images did not have an alt tag, so they've been added buttons on the options menu were generic, so an interactive description was added through the use of aria labels
16 lines
748 B
PHP
16 lines
748 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="/login" method="post" enctype="multipart/form-data">
|
|
@csrf
|
|
<label class="inline">handle</label><input type="text" name="handle" class="inline" placeholder="Handle" required/>
|
|
<label class="inline">password</label><input 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
|
|
</form>
|
|
</section>
|