PluginProbe
Tutor LMS – eLearning and online course solution / 1.6.7
Tutor LMS – eLearning and online course solution v1.6.7
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / email / send-reset-password.php
send-reset-password.php
22 lines 966 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>