Updated reset-password flow design

Fixes #800
This commit is contained in:
Dan Brown 2018-04-14 16:16:29 +01:00
parent fae564ff32
commit dfadaa28f6
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
2 changed files with 40 additions and 37 deletions

View File

@ -11,9 +11,10 @@
<div class="text-center"> <div class="text-center">
<div class="center-box text-left"> <div class="card center-box">
<h1>{{ trans('auth.reset_password') }}</h1> <h3>@icon('permission') {{ trans('auth.reset_password') }}</h3>
<div class="body">
<p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p> <p class="muted small">{{ trans('auth.reset_password_send_instructions') }}</p>
<form action="{{ baseUrl("/password/email") }}" method="POST"> <form action="{{ baseUrl("/password/email") }}" method="POST">
@ -24,11 +25,13 @@
@include('form/text', ['name' => 'email']) @include('form/text', ['name' => 'email'])
</div> </div>
<div class="from-group"> <div class="from-group text-right">
<button class="button block pos">{{ trans('auth.reset_password_send_button') }}</button> <button class="button primary">{{ trans('auth.reset_password_send_button') }}</button>
</div> </div>
</form> </form>
</div> </div>
</div>
</div> </div>
@stop @stop

View File

@ -7,15 +7,13 @@
@endif @endif
@stop @stop
@section('body-class', 'image-cover login')
@section('content') @section('content')
<div class="text-center"> <div class="text-center">
<div class="center-box text-left"> <div class="card center-box">
<h1>{{ trans('auth.reset_password') }}</h1> <h3>@icon('permission') {{ trans('auth.reset_password') }}</h3>
<div class="body">
<form action="{{ baseUrl("/password/reset") }}" method="POST"> <form action="{{ baseUrl("/password/reset") }}" method="POST">
{!! csrf_field() !!} {!! csrf_field() !!}
<input type="hidden" name="token" value="{{ $token }}"> <input type="hidden" name="token" value="{{ $token }}">
@ -35,11 +33,13 @@
@include('form/password', ['name' => 'password_confirmation']) @include('form/password', ['name' => 'password_confirmation'])
</div> </div>
<div class="from-group"> <div class="from-group text-right">
<button class="button block pos">{{ trans('auth.reset_password') }}</button> <button class="button primary">{{ trans('auth.reset_password') }}</button>
</div> </div>
</form> </form>
</div> </div>
</div>
</div> </div>
@stop @stop