Design Refresh

This commit is contained in:
Roscoe 2026-01-23 23:16:08 +00:00
commit e7202174f7
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
44 changed files with 593 additions and 228 deletions

View file

@ -0,0 +1,34 @@
<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>