관리-도구
편집 파일: 8a554ae105d4d54d1c2044033665e75de35c8c91.php
<?php $__env->startSection('content'); ?> <section class="login-page"> <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col-lg-5 col-md-7"> <div class="admin-login-wrapper"> <h3 class="text-dark text-center mb-4"><?php echo e(__('Verify Using Code')); ?></h3> <form action="<?php echo e(route('admin.password.verify.code')); ?>" method="POST" class="cmn-form mt-30"> <?php echo csrf_field(); ?> <div class="form-group"> <label class="text-white"><?php echo e(__('Verification Code')); ?></label> <input type="text" name="code" id="code" class="form-control"> </div> <div class="form-group text-right"> <a href="<?php echo e(route('admin.password.reset')); ?>" class="text--small"><?php echo e(__('Try to send again')); ?></a> </div> <div class="form-group"> <button type="submit" class="login-button text-white w-100" tabindex="4"> <?php echo e(__('Verify Code')); ?> </button> </div> </form> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?> <?php $__env->startPush('script'); ?> <script> (function($) { "use strict"; $('#code').on('input change', function() { var xx = document.getElementById('code').value; $(this).val(function(index, value) { value = value.substr(0, 7); return value.replace(/\W/gi, '').replace(/(.{3})/g, '$1 '); }); }); })(jQuery) </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('backend.auth.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/inprosysltd/public_html/cityscape.inprosysltd.com/core/resources/views/backend/auth/code_verify.blade.php ENDPATH**/ ?>