| 1 |
<?php |
| 2 |
/** |
| 3 |
* Verifying page template |
| 4 |
* |
| 5 |
* @package Welcart |
| 6 |
*/ |
| 7 |
|
| 8 |
$member_compmode = $this->page; |
| 9 |
|
| 10 |
$html = '<div id="memberpages"> |
| 11 |
|
| 12 |
<div class="post">'; |
| 13 |
|
| 14 |
$html .= '<div class="header_explanation">'; |
| 15 |
$header = ''; |
| 16 |
$html .= apply_filters( 'usces_filter_memberverifying_page_header', $header ); |
| 17 |
$html .= '</div>'; |
| 18 |
|
| 19 |
$remaining_hour = USCES_VERIFY_MEMBERS_EMAIL::get_remaining_hour(); |
| 20 |
|
| 21 |
$html .= '<h2>' . esc_html__( 'Completed sending an authentication email', 'usces' ) . '</h2>'; |
| 22 |
$html .= '<p>' . esc_html__( 'An authentication email has been sent. Click on the approval URL in the email to complete membership registration.', 'usces' ) . '</p>'; |
| 23 |
$html .= '<p>' . sprintf( __( "This registration will be invalidated if authentication is not completed within %d hours.", 'usces' ), $remaining_hour ) . '</p>'; |
| 24 |
|
| 25 |
$html .= '<div class="footer_explanation">'; |
| 26 |
$footer = ''; |
| 27 |
$html .= apply_filters( 'usces_filter_memberverifying_page_footer', $footer ); |
| 28 |
$html .= '</div>'; |
| 29 |
|
| 30 |
$html .= '<p><a href="' . esc_url( USCES_MEMBER_URL ) . '">' . esc_html__( 'to vist membership information page', 'usces' ) . '</a></p>'; |
| 31 |
$html .= '<div class="send"><a href="' . home_url() . '" class="back_to_top_button">' . esc_html__( 'Back to the top page.', 'usces' ) . '</a></div>'; |
| 32 |
$html .= '</div> |
| 33 |
|
| 34 |
</div>'; |
| 35 |
|