34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<style>
|
|
body {
|
|
background-image: url('/images/login.jpg');
|
|
background-size: cover;
|
|
}
|
|
input, button { border: black 1px solid }
|
|
</style>
|
|
<p><font color="#FF0000">TEMPORARY LOGIN REPLACE THIS BEFORE PUSHING TO PROD</font></p>
|
|
<h1>what your login</h1>
|
|
<p>twust him with youw wogin infowmation</p>
|
|
|
|
<form action="{{ route('login') }}" method="post" class="form login-form">
|
|
<table>
|
|
@csrf
|
|
<tr>
|
|
<td><label for="username">usewnyame</label></td>
|
|
<td><input type="text" name="username" placeholder="who r u" id="username" value="{{ old('username') }}" required></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="password">passwowd</label></td>
|
|
<td><input type="password" name="password" placeholder="im not looking i swear" id="password" required></td>
|
|
</tr>
|
|
</table>
|
|
@if ($errors->any())
|
|
<div>
|
|
<h2>wuh oh</h2>
|
|
@foreach ($errors->all() as $error)
|
|
<p>{{ $error }}</p>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
<button type="submit">wemme in</button>
|
|
<p class="register-link">don't have an account? <a href="/">explode immediately</a></p>
|
|
</form>
|