| 1 |
<main class="email-wrapper"> |
| 2 |
<div class="email-title"><h3><?php esc_html_e( 'You\'re almost there!', 'timetics' ); ?></h3></div> |
| 3 |
<div class="email-content"> |
| 4 |
<p class="greeting">Hello, <?php echo esc_html( $user_login ); ?></p> |
| 5 |
<p> |
| 6 |
<?php |
| 7 |
esc_html_e( |
| 8 |
'We\'re excited to have you on board! Your\'are juste a few |
| 9 |
steps away from setting up your first booking page.All |
| 10 |
that\'s left to do is verify your email address and set a |
| 11 |
password', 'timetics' |
| 12 |
); |
| 13 |
?> |
| 14 |
</p> |
| 15 |
<button class="verify-button"> |
| 16 |
<a href="<?php echo esc_url( $reset_url ); ?>"><?php esc_html_e( 'Verify email and get started', 'timetics' ); ?></a> |
| 17 |
</button> |
| 18 |
<p><?php esc_html_e( 'This link is valid for 24 hours', 'timetics' ); ?></p> |
| 19 |
</div> |
| 20 |
</main> |
| 21 |
|