Design Refresh
This commit is contained in:
parent
1dee7ae516
commit
e7202174f7
44 changed files with 593 additions and 228 deletions
34
resources/views/auth/login.blade.php
Normal file
34
resources/views/auth/login.blade.php
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue