관리-도구
편집 파일: b545164a1b90d4cef95d80b430cb6458.php
<?php $__env->startSection('title', translate('forgot_Password')); ?> <?php ($recaptcha = getWebConfig(name: 'recaptcha')); ?> <?php $__env->startSection('content'); ?> <div class="container py-4 py-lg-5 my-4 rtl"> <div class="row justify-content-center"> <div class="col-lg-8 col-md-10 text-start"> <h2 class="h3 mb-4"><?php echo e(translate('forgot_your_password')); ?>?</h2> <p class="font-size-md"> <?php echo e(translate('change_your_password_in_three_easy_steps.')); ?> <?php echo e(translate('this_helps_to_keep_your_new_password_secure.')); ?> </p> <ol class="list-unstyled font-size-md p-0"> <li> <span class="text-primary mr-2"><?php echo e(translate('1')); ?>.</span> <?php echo e(translate('use_your_registered_phone.')); ?> </li> <li> <span class="text-primary mr-2"><?php echo e(translate('2')); ?>.</span> <?php echo e(translate('we_will_send_you_a_temporary_OTP_in_your_phone')); ?>. </li> <li> <span class="text-primary mr-2"><?php echo e(translate('3')); ?>.</span> <?php echo e(translate('use_the_OTP_code_to_change_your_password_on_our_secure_website.')); ?> </li> </ol> <div class="card py-2 mt-4"> <form class="card-body needs-validation" action="<?php echo e(route('customer.auth.forgot-password')); ?>" method="post" id="customer-forgot-password-form"> <?php echo csrf_field(); ?> <div class="form-group"> <label for="recover-email"> <?php echo e(translate('Phone')); ?> </label> <input class="form-control clean-phone-input-value" type="text" name="identity" required placeholder="<?php echo e(translate('enter_your_phone_number')); ?>"> <span class="fs-12 text-muted">* <?php echo e(translate('must_use_country_code_before_phone_number')); ?></span> <div class="invalid-feedback"> <?php echo e(translate('please_provide_valid_phone_number')); ?> </div> </div> <?php if($web_config['firebase_otp_verification'] && $web_config['firebase_otp_verification']['status']): ?> <div class="generate-firebase-auth-recaptcha" id="firebase-auth-recaptcha-<?php echo e(rand(111, 999)); ?>"></div> <?php elseif(isset($recaptcha) && $recaptcha['status'] == 1): ?> <div class="dynamic-default-and-recaptcha-section"> <input type="hidden" name="g-recaptcha-response" class="render-grecaptcha-response" data-input="#login-default-captcha-section" data-default-captcha="#login-default-captcha-section" data-action="customer_auth" > <div class="default-captcha-container d-none" id="login-default-captcha-section" data-placeholder="<?php echo e(translate('enter_captcha_value')); ?>" data-base-url="<?php echo e(route('g-recaptcha-session-store')); ?>" data-session="<?php echo e('default_recaptcha_id_customer_auth'); ?>" > </div> </div> <?php else: ?> <div class="default-captcha-container" data-placeholder="<?php echo e(translate('enter_captcha_value')); ?>" data-base-url="<?php echo e(route('g-recaptcha-session-store')); ?>" data-session="<?php echo e('default_recaptcha_id_customer_auth'); ?>" > </div> <?php endif; ?> <button class="btn btn--primary" type="submit"> <?php echo e(translate('send_OTP')); ?> </button> </form> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.front-end.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home2/slnssare/public_html/resources/themes/default/web-views/customer-views/auth/recover-password.blade.php ENDPATH**/ ?>