2023-08-15 14:05:51 -07:00
|
|
|
@extends('frame')
|
|
|
|
|
|
|
|
@section('title', 'Login')
|
|
|
|
|
|
|
|
@section('main-content')
|
|
|
|
@parent
|
2023-08-17 15:14:01 -07:00
|
|
|
<section>
|
|
|
|
<article>
|
2023-08-18 14:34:53 -07:00
|
|
|
<h2>Hey, Rando. </h2>
|
2023-08-17 15:14:01 -07:00
|
|
|
<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>
|
2023-08-15 14:05:51 -07:00
|
|
|
@endsection
|