Merge pull request #1049 from batuhawk/master
Forgot and login styles updated
This commit is contained in:
commit
eae2ab0e9c
8
public/css/custom.css
vendored
8
public/css/custom.css
vendored
@ -155,6 +155,14 @@ button:focus
|
|||||||
/*--------General Button Hover Finish--------*/
|
/*--------General Button Hover Finish--------*/
|
||||||
|
|
||||||
|
|
||||||
|
/*--------Forgot Text--------*/
|
||||||
|
.forgot-text:hover
|
||||||
|
{
|
||||||
|
color: #3c3f72;
|
||||||
|
}
|
||||||
|
/*--------Forgot Text Finish--------*/
|
||||||
|
|
||||||
|
|
||||||
/*--------Dashboard Categories--------*/
|
/*--------Dashboard Categories--------*/
|
||||||
.dashboard-categories
|
.dashboard-categories
|
||||||
{
|
{
|
||||||
|
@ -14,12 +14,17 @@
|
|||||||
'novalidate' => true
|
'novalidate' => true
|
||||||
]) !!}
|
]) !!}
|
||||||
|
|
||||||
|
|
||||||
@stack('email_input_start')
|
@stack('email_input_start')
|
||||||
{{ Form::emailGroup('email', false, 'envelope', ['placeholder' => trans('general.email')], null, 'has-feedback', 'input-group-alternative') }}
|
{{ Form::emailGroup('email', false, 'envelope', ['placeholder' => trans('general.email')], null, 'has-feedback', 'input-group-alternative') }}
|
||||||
@stack('email_input_end')
|
@stack('email_input_end')
|
||||||
|
|
||||||
<button type="submit" class="btn btn-success float-right">{{ trans('general.send') }}</button>
|
<div class="row">
|
||||||
|
<div class="col-xs-12 col-sm-12">
|
||||||
|
{!! Form::button(
|
||||||
|
'<div class="aka-loader"></div> <span>' . trans('general.send') . '</span>',
|
||||||
|
[':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-success header-button-top float-right', 'data-loading-text' => trans('general.loading')]) !!}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{!! Form::close() !!}
|
{!! Form::close() !!}
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
|
|
||||||
{{ Form::passwordGroup('password', false, 'unlock-alt', ['placeholder' => trans('auth.password.current')], 'has-feedback', 'input-group-alternative') }}
|
{{ Form::passwordGroup('password', false, 'unlock-alt', ['placeholder' => trans('auth.password.current')], 'has-feedback', 'input-group-alternative') }}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row align-items-center">
|
||||||
@stack('remember_input_start')
|
@stack('remember_input_start')
|
||||||
<div class="col-8">
|
<div class="col-xs-12 col-sm-8">
|
||||||
<div class="custom-control custom-control-alternative custom-checkbox">
|
<div class="custom-control custom-control-alternative custom-checkbox">
|
||||||
{{ Form::checkbox('remember', 1, null, [
|
{{ Form::checkbox('remember', 1, null, [
|
||||||
'id' => 'checkbox-remember',
|
'id' => 'checkbox-remember',
|
||||||
@ -37,16 +37,16 @@
|
|||||||
</div>
|
</div>
|
||||||
@stack('remember_input_end')
|
@stack('remember_input_end')
|
||||||
|
|
||||||
<div class="col-4">
|
<div class="col-xs-12 col-sm-4">
|
||||||
{!! Form::button(
|
{!! Form::button(
|
||||||
'<div class="aka-loader"></div> <span>' . trans('auth.login') . '</span>',
|
'<div class="aka-loader"></div> <span>' . trans('auth.login') . '</span>',
|
||||||
[':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-success float-right', 'data-loading-text' => trans('general.loading')]) !!}
|
[':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-success header-button-top float-right', 'data-loading-text' => trans('general.loading')]) !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@stack('forgotten-password-start')
|
@stack('forgotten-password-start')
|
||||||
<div class="mt-5 mb--4">
|
<div class="mt-5 mb--4">
|
||||||
<a href="{{ url('auth/forgot') }}" class="text-white"><small>{{ trans('auth.forgot_password') }}</small></a>
|
<a href="{{ url('auth/forgot') }}" class="text-white"><small class="forgot-text">{{ trans('auth.forgot_password') }}</small></a>
|
||||||
</div>
|
</div>
|
||||||
@stack('forgotten-password-end')
|
@stack('forgotten-password-end')
|
||||||
{!! Form::close() !!}
|
{!! Form::close() !!}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user