edit-lesson.php
4 years ago
edit_quiz.php
4 years ago
login.php
4 years ago
question_answer_form.php
4 years ago
question_answer_list.php
4 years ago
question_form.php
4 years ago
review.php
4 years ago
topic-form.php
4 years ago
login.php
29 lines
| 1 | <?php |
| 2 | $lost_pass = apply_filters('tutor_lostpassword_url', wp_lostpassword_url()); |
| 3 | ?> |
| 4 | <div class="tutor-login-modal tutor-modal tutor-is-sm tutor-modal-is-close-inside-inner"> |
| 5 | <span class="tutor-modal-overlay"></span> |
| 6 | <div class="tutor-modal-root"> |
| 7 | <div class="tutor-modal-inner"> |
| 8 | <button data-tutor-modal-close class="tutor-modal-close"> |
| 9 | <span class="tutor-icon-line-cross-line tutor-icon-40"></span> |
| 10 | </button> |
| 11 | <?php do_action("tutor_before_login_form"); ?> |
| 12 | |
| 13 | <div class="tutor-modal-body"> |
| 14 | <div class="tutor-fs-5 tutor-color-black tutor-mb-32"> |
| 15 | <?php _e('Hi, Welcome back!', 'tutor'); ?> |
| 16 | </div> |
| 17 | <?php |
| 18 | // load form template. |
| 19 | $login_form = trailingslashit( tutor()->path ) . 'templates/login-form.php'; |
| 20 | tutor_load_template_from_custom_path( |
| 21 | $login_form, |
| 22 | false |
| 23 | ); |
| 24 | ?> |
| 25 | <?php do_action("tutor_after_login_form"); ?> |
| 26 | </div> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |