Viewing file: 00d041a2f9fe8a7d1fc80a0060c4b8cf.php (5.31 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Login'); ?>
<?php $__env->startSection('content'); ?>
<div class="row w-100"> <div class="col-md-8 col-sm-6 col-6 img-section"> <div class="ai-img"> <img class="w-100" src="<?php echo e(asset('images/login.jpg')); ?>" alt=""> </div> </div> <div class="col-md-4 col-sm-12 col-12 form-section" > <h4 class="text-muted home-section"> <strong class="d-block text-center"> <?php echo e(trans('auth.welcome_login')); ?> <?php echo e(get_settings('app_name')); ?>
</strong> </h4> <p class="login-box-msg"><?php echo app('translator')->get('auth.login.title'); ?></p>
<form id="login_form" action="<?php echo e(route('authenticate')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="form-group"> <label for=""><?php echo e(trans('auth.email_address')); ?></label> <div class="input-group mb-3"> <input name="email" type="email" class="form-control" placeholder="<?php echo app('translator')->get('auth.enter_email'); ?>" id="email"> <div class="input-group-append"> <div class="input-group-text"> <span class="fas fa-envelope"></span> </div> </div> </div> </div>
<div class="form-group"> <label for=""><?php echo e(trans('auth.password')); ?></label> <div class="input-group mb-3"> <input name="password" type="password" class="form-control" placeholder="<?php echo app('translator')->get('auth.enter_password'); ?>" id="password"> <div class="input-group-append"> <div class="input-group-text"> <span class="fas fa-lock"></span> </div> </div> </div> </div>
<div class="row"> <div class="col-lg-6"> <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> <?php if(env('APP_DEMO')): ?> <div class="col-lg-6"> <div class="icheck-primary"> <button type="button" class="btn btn-sm btn-default float-right mb-2" id="copy-btn"><?php echo app('translator')->get('auth.login.form.copy'); ?></button> </div> </div> <?php endif; ?> <div class="col-md-12"> <?php if(get_settings('recaptcha_site_key')): ?> <button class="g-recaptcha btn btn-primary btn-block" data-sitekey="<?php echo e(get_settings('recaptcha_site_key')); ?>" data-callback='onSubmit' data-action='submit'><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button> <?php else: ?> <button type="submit" class="btn btn-primary btn-block"><?php echo app('translator')->get('auth.form.button.sign_in'); ?></button> <?php endif; ?> </div> </div> </form>
<!-- /.social-auth-links --> <div class="row mt-3"> <div class="col-8"> <p class="mb-1"> <a href="<?php echo e(route('password.request')); ?>">Forgot Password</a> </p> </div> <?php if($registration_status=='enable'): ?> <div class="col-4"> <p class="mb-0"> <a href="<?php echo e(route('signup')); ?>" class="text-center"><?php echo app('translator')->get('auth.form.registration'); ?></a> </p> </div> <?php endif; ?> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('extra-script'); ?> <script src="https://www.google.com/recaptcha/api.js"></script> <script> function onSubmit(token) { document.getElementById("login_form").submit(); }
$("#copy-btn").click(function () { $("#email").val("customer@demo.com"); $("#password").val("123456"); }); </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/pcolfjqt/ai.picotech.app/resources/views/auth/login.blade.php ENDPATH**/ ?>
|