send-reset-password.php
6 years ago
to_instructor_asked_question_by_student.php
6 years ago
to_instructor_course_completed.php
6 years ago
to_instructor_course_enrolled.php
6 years ago
to_instructor_lesson_completed.php
6 years ago
to_student_course_completed.php
6 years ago
to_student_quiz_completed.php
6 years ago
send-reset-password.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package TutorLMS/Templates |
| 4 | * @version 1.4.3 |
| 5 | */ |
| 6 | |
| 7 | defined( 'ABSPATH' ) || exit; |
| 8 | ?> |
| 9 | |
| 10 | |
| 11 | <p><?php printf( esc_html__( 'Hi %s,', 'tutor' ), esc_html( $user_login ) ); ?> |
| 12 | |
| 13 | <p><?php printf( esc_html__( 'Someone has requested a new password for the following account on %s:', 'tutor' ), esc_html( wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ) ); ?></p> |
| 14 | |
| 15 | <p><?php printf( esc_html__( 'Username: %s', 'tutor' ), esc_html( $user_login ) ); ?></p> |
| 16 | <p><?php esc_html_e( 'If you didn\'t make this request, just ignore this email. If you\'d like to proceed:', 'tutor' ); ?></p> |
| 17 | <p> |
| 18 | <a class="link" href="<?php echo esc_url( add_query_arg( array( 'reset_key' => $reset_key, 'user_id' => $user_id ), tutils()->tutor_dashboard_url('retrieve-password') ) ); ?>"><?php // phpcs:ignore ?> |
| 19 | <?php esc_html_e( 'Click here to reset your password', 'tutor' ); ?> |
| 20 | </a> |
| 21 | </p> |
| 22 | <p><?php esc_html_e( 'Thanks for reading.', 'tutor' ); ?></p> |