1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Started CSS and Layout upgrades

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.
This commit is contained in:
Ro
2023-08-17 15:14:01 -07:00
parent 43b2148b1b
commit 9f04b07c4b
12 changed files with 156 additions and 123 deletions

View File

@ -7,15 +7,17 @@
@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>
<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