forked from projects/thebadspace
66cf78ba75
Added the necessary template files for every page needed. Most are still empty but all are accounted for from the previous version. Also organized all routes to the dashboard, named the den for better security
21 lines
565 B
PHP
21 lines
565 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'Login')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
@if($errors->any())
|
|
<h4>{{$errors->first()}}</h4>
|
|
@endif
|
|
<div>
|
|
<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="" />
|
|
<input type="submit" value="Knock Knock" name="submit_button">
|
|
</form>
|
|
</div>
|
|
@endsection |