nav-bar.php
3 years ago
profile.php
3 years ago
reset-password.php
3 years ago
social-profile.php
3 years ago
withdraw-settings.php
3 years ago
reset-password.php
93 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Reset password |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Dashboard\Settings |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @version 1.4.3 |
| 10 | */ |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <div class="tutor-dashboard-content-inner"> |
| 15 | <div class="tutor-mb-32"> |
| 16 | <?php |
| 17 | tutor_load_template( 'dashboard.settings.nav-bar', array( 'active_setting_nav' => 'reset_password' ) ); |
| 18 | ?> |
| 19 | </div> |
| 20 | |
| 21 | <form action="" method="post" enctype="multipart/form-data"> |
| 22 | <?php do_action( 'tutor_reset_password_input_before' ); ?> |
| 23 | |
| 24 | <div class="tutor-row"> |
| 25 | <div class="tutor-col-12 tutor-col-sm-8 tutor-col-md-12 tutor-col-lg-7 tutor-mb-32"> |
| 26 | <label class="tutor-form-label tutor-color-secondary"> <?php esc_html_e( 'Current Password', 'tutor' ); ?> </label> |
| 27 | <input class="tutor-form-control" type="password" name="previous_password" placeholder="<?php esc_attr_e( 'Current Password', 'tutor' ); ?>"> |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 | <div class="tutor-row"> |
| 32 | <div class="tutor-col-12 tutor-col-sm-8 tutor-col-md-12 tutor-col-lg-7 tutor-mb-32"> |
| 33 | <div class="tutor-password-strength-checker"> |
| 34 | <div class="tutor-password-field"> |
| 35 | <label class="field-label tutor-form-label" for="tutor-new-password"> |
| 36 | <?php esc_html_e( 'New Password', 'tutor' ); ?> |
| 37 | </label> |
| 38 | <div class="field-group"> |
| 39 | <input |
| 40 | class="password-checker tutor-form-control" |
| 41 | id="tutor-new-password" |
| 42 | type="password" |
| 43 | name="new_password" |
| 44 | placeholder="<?php esc_attr_e( 'Type Password', 'tutor' ); ?>" |
| 45 | /> |
| 46 | <span class="show-hide-btn"></span> |
| 47 | </div> |
| 48 | </div> |
| 49 | |
| 50 | <div class="tutor-passowrd-strength-hint"> |
| 51 | <div class="indicator"> |
| 52 | <span class="weak"></span> |
| 53 | <span class="medium"></span> |
| 54 | <span class="strong"></span> |
| 55 | </div> |
| 56 | <div class="text tutor-fs-7 tutor-color-muted"></div> |
| 57 | </div> |
| 58 | </div> |
| 59 | </div> |
| 60 | </div> |
| 61 | |
| 62 | <div class="tutor-row"> |
| 63 | <div class="tutor-col-12 tutor-col-sm-8 tutor-col-md-12 tutor-col-lg-7 tutor-mb-32"> |
| 64 | <div class="tutor-password-field tutor-settings-pass-field"> |
| 65 | <label class="field-label tutor-form-label" for="tutor-confirm-password"> |
| 66 | <?php esc_html_e( 'Re-type New Password', 'tutor' ); ?> |
| 67 | </label> |
| 68 | <div class="tutor-form-wrap"> |
| 69 | <span class="tutor-validation-icon tutor-icon-mark tutor-color-success tutor-form-icon tutor-form-icon-reverse" style="display: none;"></span> |
| 70 | <input |
| 71 | class="tutor-form-control" |
| 72 | id="tutor-confirm-password" |
| 73 | type="password" |
| 74 | placeholder="<?php esc_attr_e( 'Type Password', 'tutor' ); ?>" |
| 75 | name="confirm_new_password" |
| 76 | /> |
| 77 | </div> |
| 78 | </div> |
| 79 | </div> |
| 80 | </div> |
| 81 | |
| 82 | <?php do_action( 'tutor_reset_password_input_after' ); ?> |
| 83 | |
| 84 | <div class="tutor-row"> |
| 85 | <div class="tutor-col-12"> |
| 86 | <button type="submit" class="tutor-btn tutor-btn-primary tutor-profile-password-reset"> |
| 87 | <?php esc_html_e( 'Reset Password', 'tutor' ); ?> |
| 88 | </button> |
| 89 | </div> |
| 90 | </div> |
| 91 | </form> |
| 92 | </div> |
| 93 |