forked from mirror/pixelfed
Update login view
This commit is contained in:
parent
8a0ba77867
commit
9811dda7a7
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
||||||
<div class="card-header bg-transparent p-3 text-center font-weight-bold">{{ __('Login') }}</div>
|
<div class="card-header bg-transparent p-3 text-center font-weight-bold">{{ __('Login') }}</div>
|
||||||
|
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<form method="POST" action="{{ route('login') }}" class="px-5">
|
<form method="POST" action="{{ route('login') }}">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
<div class="form-group row">
|
<div class="form-group row">
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
<div class="checkbox">
|
<div class="checkbox">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="remember" {{ old('remember') ? 'checked' : '' }}>
|
<input type="checkbox" name="remember" {{ old('remember') ? 'checked' : '' }}>
|
||||||
<span class="font-weight-bold small ml-1 text-muted">
|
<span class="font-weight-bold ml-1 text-muted">
|
||||||
{{ __('Remember Me') }}
|
{{ __('Remember Me') }}
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<div class="form-group row mb-0">
|
<div class="form-group row mb-0">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<button type="submit" class="btn btn-primary btn-block py-0 font-weight-bold">
|
<button type="submit" class="btn btn-primary btn-block btn-lg font-weight-bold">
|
||||||
{{ __('Login') }}
|
{{ __('Login') }}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<p class="text-center small font-weight-bold mb-0">
|
<p class="text-center font-weight-bold">
|
||||||
<a href="{{ route('password.request') }}">
|
<a href="{{ route('password.request') }}">
|
||||||
{{ __('Forgot Password') }}
|
{{ __('Forgot Password') }}
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in a new issue