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