PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.9.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.9.0
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / templates / email / email-verify.php

email-verify.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.0, at templates/email/email-verify.php

60 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 \ABlocks\Helper::get_template( 'email/template-header.php' );
7 ?>
8 <div class="ablocks-container">
9 <div class="ablocks-content">
10 <div class="ablocks-wrapper">
11
12 <h5 class="ablocks-main-heading">
13 <?php esc_html_e( 'Email verification', 'ablocks' ); ?>
14 </h5>
15
16 <div class="ablocks-entry-content">
17 <p>
18 <?php esc_html_e( 'Hello', 'ablocks' ); ?>
19 <?php echo esc_html( $email ); ?>,
20 </p>
21
22 <p>
23 <?php esc_html_e( 'Thank you for registering with us. Please click the link below to verify your email address:', 'ablocks' ); ?>
24 </p>
25
26 <p>
27 <a href="<?php echo esc_url( $url ); ?>">
28 <?php esc_html_e( 'Verify Your Email', 'ablocks' ); ?>
29 </a>
30 </p>
31
32 <p><?php esc_html_e( 'If you did not register, please ignore this email.', 'ablocks' ); ?></p>
33
34 <p>
35 <?php esc_html_e( 'Best regards', 'ablocks' ); ?>,<br>
36 <?php echo esc_html( get_bloginfo( 'name' ) ); ?>
37 </p>
38 </div>
39
40 <div class="ablocks-footer">
41 &copy;
42 <?php
43 $site_url = wp_parse_url( get_bloginfo( 'url' ) );
44
45 if ( ! empty( $site_url['host'] ) ) {
46 echo esc_html( $site_url['host'] );
47
48 if ( ! empty( $site_url['port'] ) ) {
49 echo ':' . esc_html( $site_url['port'] );
50 }
51 }
52 ?>
53 </div>
54
55 </div>
56 </div>
57 </div>
58 <?php
59 \ABlocks\Helper::get_template( 'email/template-footer.php' );
60