![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/storage/framework/views/ |
<?php $__env->startSection('title',trans('corals-one-ui::labels.auth.login')); ?> <?php $__env->startSection('content'); ?> <div class="row justify-content-center"> <div class="col-md-8 col-lg-6 col-xl-4"> <div class="block block-rounded block-themed mb-0"> <?php \Actions::do_action('pre_login_form') ?> <div class="block-header bg-primary-dark"> <h3 class="block-title">Log In</h3> <div class="block-options"> <a class="btn-block-option font-size-sm" href="<?php echo e(url('password/reset')); ?>">Forgot Password?</a> </div> </div> <div class="block-content"> <div class="p-sm-3 px-lg-4 py-lg-5"> <h1 class="h2 mb-1"><?php echo e(\Settings::get('site_name', 'Corals')); ?></h1> <p class="text-muted"> Welcome, please login. </p> <form method="POST" action="<?php echo e(route('login')); ?>" id="login-form"> <div class="py-3"> <?php echo e(csrf_field()); ?> <div class="form-group text-center"> <?php if(session('confirmation_user_id')): ?> <a href="<?php echo e(route('auth.resend_confirmation')); ?>"><?php echo app('translator')->get('User::labels.confirmation.resend_email'); ?></a> <?php endif; ?> </div> <div class="form-group has-feedback <?php echo e($errors->has('email') ? ' has-error' : ''); ?>"> <input type="email" name="email" id="email" class="form-control form-control-alt form-control-lg" placeholder="<?php echo app('translator')->get('User::attributes.user.email'); ?>" value="[email protected]" autofocus/> <span class="glyphicon glyphicon-envelope form-control-icon"></span> <?php if($errors->has('email')): ?> <div class="help-block"> <strong><?php echo e($errors->first('email')); ?></strong> </div> <?php endif; ?> </div> <div class="form-group has-feedback <?php echo e($errors->has('password') ? ' has-error' : ''); ?>"> <input type="password" name="password" class="form-control form-control-alt form-control-lg" placeholder="<?php echo app('translator')->get('User::attributes.user.password'); ?>" id="password" value="123456"/> <span class="glyphicon glyphicon-lock form-control-icon"></span> <?php if($errors->has('password')): ?> <div class="help-block"> <strong><?php echo e($errors->first('password')); ?></strong> </div> <?php endif; ?> </div> <div class="form-group"> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="login-remember" name="remember" <?php echo e(old('remember') ? 'checked' : ''); ?> /> <label class="custom-control-label font-w400" for="login-remember"><?php echo app('translator')->get('corals-one-ui::labels.auth.remember_me'); ?></label> </div> </div> </div> <div class="form-group row"> <div class="col-md-6 col-xl-5"> <button type="submit" class="btn btn-block btn-alt-primary"> <i class="fa fa-fw fa-sign-in mr-1"></i> <?php echo app('translator')->get('corals-one-ui::labels.auth.login'); ?> </button> </div> </div> </form> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script> $(document).ready(function () { if (!$(".socials-buttons").children().length > 0) { $(".or-separator").remove(); } }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.auth', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/demo.cartinsight.co/resources/themes/oneUI/auth/login.blade.php ENDPATH**/ ?>