Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/tutor-pro/addons/auth/templates/email/login-otp.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 + /**
3 + * Login OTP email template
4 + *
5 + * @package TutorPro\Auth
6 + * @subpackage Templates
7 + * @author Themeum <support@themeum.com>
8 + * @link https://themeum.com
9 + * @since 2.1.9
10 + */
11 +
12 + ?>
13 + <!DOCTYPE html>
14 + <html>
15 +
16 + <head>
17 + <meta http-equiv="Content-Type" content="text/html charset=UTF-8" />
18 + <?php require TUTOR()->path . 'templates/email/email_styles.php'; ?>
19 + </head>
20 +
21 + <body>
22 + <div class="tutor-email-body">
23 + <div class="tutor-email-wrapper" style="background-color: #fff;">
24 +
25 + <?php require TUTOR_PRO()->path . 'templates/email/email_header.php'; ?>
26 +
27 + <div class="tutor-email-content">
28 + <div>
29 + <p><?php esc_html_e( 'Login OTP:', 'tutor-pro' ); ?> <strong>{login_otp}</strong></p>
30 + <p style="width: 350px;"><?php esc_html_e( 'Please use the following OTP code to complete your login.', 'tutor-pro' ); ?></p>
31 + </div>
32 + </div>
33 +
34 + <div class="tutor-email-footer-text">
35 + <div data-source="email-footer-text">{additional_footer}</div>
36 + </div>
37 +
38 + </div>
39 + <!-- wrapper end -->
40 + </div>
41 + <!-- email body end -->
42 +
43 + <!-- global footer from tutor settings > email -->
44 + {footer_text}
45 +
46 + </body>
47 + </html>
48 +