Viewing file: a94671355cee41753fe2a08f93bc26166007077f.php (4.09 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Forget password'); ?>
<?php $__env->startSection('extra-style'); ?>
<style>
body {
font-family: "Montserrat", sans-serif;
}
.login-box,
.register-box {
width: 400px;
}
.login-page {
background-image: url('<?php echo e(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: 270px;
height: auto;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="card-body login-card-body p-0">
<div class="form-data text-center">
<div class="header-content">
<img src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="">
</div>
<form action="<?php echo e(route('admin.authenticate')); ?>" method="post">
<?php echo csrf_field(); ?>
<div class="form-content">
<input name="email" type="email" class="input-data" placeholder="<?php echo app('translator')->get('auth.login.form.email'); ?>"
id="email">
<div class="login-btn text-left">
<button type="submit" class="btn loginbtn"><?php echo app('translator')->get('auth.form.button.reset'); ?></button>
</div>
<div class="sing_up mt-2 text-center">
<p class="mb-0">
<a class="forgot-text" href="<?php echo e(route('login')); ?>"><?php echo app('translator')->get('auth.form.sign_in'); ?></a>
</p>
</div>
</div>
</form>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/gateway.picotech.app/public_html/resources/views/auth/password_reset_form.blade.php ENDPATH**/ ?>
|