7151314122
Added additional pages About, Listings, and Location as well as implementing the corresponding functionality for those pages to be able to pull the data they need from the DB. Also continued layout clean up and adjusted some gloabal font sizing settings
21 lines
589 B
PHP
21 lines
589 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'Login')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article>
|
|
<h2>Hey, Rando. </h2>
|
|
<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 |