forked from projects/thebadspace
e35dff591f
Functionality is coming along at a good pace, so it was time to start adjusting the templates and styles to the new layout. Responsive will come after all of the pages have been updated.
23 lines
630 B
PHP
23 lines
630 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'Login')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
@if($errors->any())
|
|
<h4>{{$errors->first()}}</h4>
|
|
@endif
|
|
<section>
|
|
<article>
|
|
<form action="/login" method="post" enctype="multipart/form-data">
|
|
@csrf
|
|
<label>Handle</label><br />
|
|
<input type="text" name="handle" value="" />
|
|
<br />
|
|
<label>Password</label><br />
|
|
<input type="password" name="password" value="" /><br />
|
|
<input type="submit" value="Knock Knock" name="submit_button">
|
|
</form>
|
|
</article>
|
|
</section>
|
|
@endsection |