mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
Added Template Files, Grouped Den Routes
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
This commit is contained in:
0
resources/views/back/locations.blade.php
Normal file
0
resources/views/back/locations.blade.php
Normal file
21
resources/views/back/login.blade.php
Normal file
21
resources/views/back/login.blade.php
Normal file
@ -0,0 +1,21 @@
|
||||
@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
|
4
resources/views/back/member.blade.php
Normal file
4
resources/views/back/member.blade.php
Normal file
@ -0,0 +1,4 @@
|
||||
<div>
|
||||
<h1>Mmeber Stuff</h1>
|
||||
Hey {{$handle}}
|
||||
</div>
|
Reference in New Issue
Block a user