-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2282f37
commit 9b006c3
Showing
7 changed files
with
148 additions
and
110 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@include('notifications') | ||
|
||
<div class="login-box"> | ||
<div class="logo"> | ||
<a href="{!! guard_url('/') !!}"><img src="{!!theme_asset('img/logo/logo.svg')!!}" class="img-responsive center-block" alt="logo" title="Lavalite"></a> | ||
</div> | ||
<div class="body"> | ||
<h2>Reset Password</h2> | ||
{!!Form::vertical_open() | ||
->id('reset') | ||
->action(guard_url('password/email')) | ||
->method('POST')!!} | ||
<div class="form-group has-feedback"> | ||
{!! Form::email('email') | ||
->required() | ||
->placeholder('Enter your email') | ||
->raw() !!} | ||
<span class="fa fa-user-circle form-control-feedback"></span> | ||
</div> | ||
|
||
|
||
<button type="submit" class="btn theme-btn btn-block mt-20">Send Password</button> | ||
<br/> | ||
<p class="text-center mb-0">Back to <a href="{{guard_url("login")}}" class="mt-10">login</a></p> | ||
|
||
{!! Form::close() !!} | ||
</div> | ||
</div> | ||
<div class="stripes-wraper"> | ||
<div class="stripes"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
@include('notifications') | ||
|
||
<div class="login-box"> | ||
<div class="logo"> | ||
<a href="{!! guard_url('/') !!}"><img src="{!!theme_asset('img/logo/logo.svg')!!}" class="img-responsive center-block" alt="logo" title="Lavalite"></a> | ||
</div> | ||
<div class="body"> | ||
<h2>Reset Password</h2> | ||
<form method="POST" action="{{ route('guard.password.update', ['guard' => 'admin']) }}" class="form-vertical"> | ||
@csrf | ||
|
||
<input type="hidden" name="token" value="{{ $token }}"> | ||
|
||
<div class="form-group has-feedback "> | ||
|
||
<input id="email" type="email" class="form-control {{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ $email ?? old('email') }}" required autofocus placeholder="{{ __('E-Mail Address') }}"> | ||
<span class="fa fa-user-circle form-control-feedback"></span> | ||
|
||
@if ($errors->has('email')) | ||
<span class="invalid-feedback" role="alert"> | ||
<strong>{{ $errors->first('email') }}</strong> | ||
</span> | ||
@endif | ||
</div> | ||
|
||
<div class="form-group has-feedback"> | ||
<input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required placeholder="{{ __('Password') }}"> | ||
<span class="fa fa-key form-control-feedback"></span> | ||
@if ($errors->has('password')) | ||
<span class="invalid-feedback" role="alert"> | ||
<strong>{{ $errors->first('password') }}</strong> | ||
</span> | ||
@endif | ||
</div> | ||
|
||
<div class="form-group has-feedback"> | ||
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required placeholder="{{ __('Confirm Password') }}"> | ||
<span class="fa fa-key form-control-feedback"></span> | ||
</div> | ||
|
||
<button type="submit" class="btn theme-btn btn-block mt-20"> | ||
{{ __('Reset Password') }} | ||
</button> | ||
<br/> | ||
<p class="text-center mb-0">Back to <a href="{{guard_url("login")}}" class="mt10">login</a></p> | ||
|
||
</form> | ||
</div> | ||
</div> | ||
<div class="stripes-wraper"> | ||
<div class="stripes"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-8"> | ||
<div class="card"> | ||
<div class="card-header">{{ __('Verify Your Email Address') }}</div> | ||
|
||
<div class="card-body"> | ||
@if (session('resent')) | ||
<div class="alert alert-success" role="alert"> | ||
{{ __('A fresh verification link has been sent to your email address.') }} | ||
</div> | ||
@endif | ||
|
||
{{ __('Before proceeding, please check your email for a verification link.') }} | ||
{{ __('If you did not receive the email') }}, <a href="{{ route('guard.verification.resend', ['guard' => 'admin']) }}">{{ __('click here to request another') }}</a>. | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters