Viewing file: 6a953814fc9b19c78549f70fbc51f059febc0d98.php (4.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Login'); ?>
<?php $__env->startSection('content'); ?>
<div class="container-fluid">
<div class="row">
<div class="col-md-5 col-lg-6 col-sm-5 left-image-section">
<?php if(get_settings('app_logo')): ?>
<div class="logo-section">
<a href="#">
<img src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="">
</a>
</div>
<?php endif; ?>
<div class="image-section">
<img src="<?php echo e(asset('images/login_image.png')); ?>" alt="">
</div>
</div>
<div class="col-md-6 col-lg-5 col-sm-6 mt-5 form-section">
<form action="<?php echo e(route('authenticate')); ?>" method="post" id="login_form">
<?php echo csrf_field(); ?>
<?php if($registration_status=='enable'): ?>
<div class="form-group">
<span class="text-right"><?php echo app('translator')->get('auth.register_account'); ?></span>
<a href="<?php echo e(route('signup')); ?>" class="btn signin-custom-btn float-right ml-3"><?php echo app('translator')->get('auth.form.button.sign_up'); ?></a>
</div>
<?php endif; ?>
<div class="form-group mt-5">
<h2><?php echo app('translator')->get('auth.welcome',['app_name'=>get_settings('app_name')?get_settings('app_name'):"PicoMail"]); ?></h2>
<h6><?php echo app('translator')->get('auth.login.title'); ?></h6>
</div>
<div class="form-group">
<label for=""><?php echo app('translator')->get('auth.login.form.email'); ?></label>
<input type="email" class="form-control" name="email" placeholder="<?php echo app('translator')->get('auth.login.form.email_placeholder'); ?>">
</div>
<div class="form-group">
<label for=""><?php echo app('translator')->get('auth.login.form.password'); ?></label>
<input type="password" class="form-control" name="password" placeholder="<?php echo app('translator')->get('auth.login.form.password_placeholder'); ?>">
</div>
<div class="form-group">
<div class="row">
<div class="col-lg-8">
<div class="icheck-primary">
<input name="remember_me" type="checkbox" id="remember">
<label for="remember">
<?php echo app('translator')->get('auth.login.form.remember_me'); ?>
</label>
</div>
</div>
<div class="col-lg-4">
<a href="<?php echo e(route('password.request')); ?>"><?php echo app('translator')->get('auth.form.forget_password'); ?></a>
</div>
</div>
</div>
<div class="form-group">
<?php if(get_settings('recaptcha_site_key')): ?>
<button class="g-recaptcha btn login-custom-btn"
data-sitekey="<?php echo e(get_settings('recaptcha_site_key')); ?>"
data-callback='onSubmit' id="loginBtn"
data-action='submit'><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button>
<?php else: ?>
<button type="submit" class="btn login-custom-btn"><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button>
<?php endif; ?>
</div>
</form>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-script'); ?>
<script src="https://www.google.com/recaptcha/api.js"></script>
<script src="<?php echo e(asset('js/auth.js')); ?>"> </script>
<?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/picomail.picotech.app/public_html/resources/views/auth/login.blade.php ENDPATH**/ ?>
|