some changes to the login page for non authed users. And also added a new layout with the id 6 only for marderchen to fix his async issues with older browsers

This commit is contained in:
noxy
2019-11-11 22:21:24 +00:00
parent f78dbfd5c3
commit 35c60a47e9
79 changed files with 3771 additions and 15 deletions

View File

@@ -0,0 +1,33 @@
@extends('layout')
@section('content')
@include('partials.flash')
<div class="page-header">
<h5>Spurleys Super Dooper Login Screen</h5>
<p>Log into your w0bm.com Account</p>
</div>
<div hiden class="nodisplay">
<div class="wrap-collabsible">
<input id="collapsible" class="toggle" type="checkbox">
<label for="collapsible" class="lbl-toggle">Login</label>
<div class="collapsible-content">
<div class="content-inner">
<div class="centered">
<form action="{{action('UserController@login')}}" method="post" class="form-signin">
{!! csrf_field() !!}
<input type="text" name="identifier" placeholder="Username" class="form-control">
<input type="password" name="password" placeholder="Password" class="form-control">
<input type="checkbox" name="remember" checked> Remember me<br>
<button type="submit" class="btn btn-primary">Login</button>
<a href="{{url('register')}}" class="btn btn-success disabled">Register</a>
</form>
</div>
<p>w0bm now supports a javascript free experience, check it out if you dont like js that much</p>
</div>
</div>
</div>
</div>
</div>
@endsection