Viewing file: password_reset_form.blade.php (3.87 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.auth_customer')
@section('title','Forget password')
@section('extra-style') <style> body { font-family: "Montserrat", sans-serif; }
.login-box, .register-box { width: 400px; }
.login-page { background-image: url('{{ asset('images/background-login.png')}}'); background-size: cover; background-repeat: no-repeat; background-position: center; }
.input-data { width: 100%; padding: 15px 20px; margin: 10px 0; display: inline-block; border-bottom: 2px solid #ccc; border-top: 0; border-left: 0; border-right: 0; box-sizing: border-box; border-radius: 5px; font-size: 18px !important; color: #666; background-color: #f8f8f8; transition: all 0.3s ease-in-out; }
[class*=icheck-]>input:first-child+input[type=hidden]+label::before, [class*=icheck-]>input:first-child+label::before { border-radius: 50px !important; }
.forgot-text { font-size: 16px !important; color: #006666; font-weight: 500; text-decoration: none; transition: all 0.3s ease-in-out; }
.forgot-text:hover { color: #444; }
.loginbtn { background-color: #006666; color: white; padding: 10px 25px; margin: 10px 0; cursor: pointer; font-size: 18px !important; font-weight: 600; border-radius: 5px; border: 2px solid transparent; transition: all 0.3s ease-in-out; }
.loginbtn:hover { background-color: transparent; color: #006666; border: 2px solid #006666; }
.sing_up span { margin-top: 10px; display: block; color: #868686; font-size: 16px; }
.sing_up a { padding: 0 5px; color: #006666; background-color: transparent; text-decoration: none; font-weight: 600; transition: all 0.3s ease-in-out; }
.icheck-primary label { font-size: 16px !important; }
.card { padding: 25px 20px !important; }
.form-content { padding: 40px 20px 40px 20px; }
.header-content { margin: 24px 0px 14px 0px; }
.header-content img { width: 150px; height: auto; } @media (max-width: 575.98px) { .form-content { padding: 40px 0px 40px 0px; } .input-data{ width: 100%; } .login-box{ width: 100%; } .icheck-primary label { font-size: 14px !important; } .forgot-text { font-size: 14px !important; } .header-content img { width: 150px; } } </style> @endsection @section('content') <div class="card-body login-card-body p-0"> <div class="form-data text-center"> <div class="header-content"> <img src="{{asset('uploads/'.get_settings('app_logo'))}}" alt=""> </div> <form action="{{route('password.sent')}}" method="post"> @csrf <div class="form-content"> <input name="email" type="email" class="input-data" placeholder="@lang('auth.login.form.email')" id="email">
<div class="login-btn text-left"> <button type="submit" class="btn loginbtn">@lang('auth.form.button.reset')</button> </div>
<div class="sing_up mt-2 text-center"> <p class="mb-0"> <a class="forgot-text" href="{{route('login')}}">@lang('auth.form.sign_in')</a> </p> </div>
</div> </form>
</div> </div> @endsection
|