# usc-e-shop/2.11.35/templates/member/verifying.php

Welcart e-Commerce, version 2.11.35. 35 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/2.11.35/code/templates/member/verifying.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/2.11.35/raw/templates/member/verifying.php
- Modified: 2022-09-16T04:47:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/2.11.35/code/templates/member/verifying.php#L10-L20`.

```php
<?php
/**
 * Verifying page template
 *
 * @package Welcart
 */

$member_compmode = $this->page;

$html = '<div id="memberpages">

<div class="post">';

$html  .= '<div class="header_explanation">';
$header = '';
$html  .= apply_filters( 'usces_filter_memberverifying_page_header', $header );
$html  .= '</div>';

$remaining_hour = USCES_VERIFY_MEMBERS_EMAIL::get_remaining_hour();

$html .= '<h2>' . esc_html__( 'Completed sending an authentication email', 'usces' ) . '</h2>';
$html .= '<p>' . esc_html__( 'An authentication email has been sent. Click on the approval URL in the email to complete membership registration.', 'usces' ) . '</p>';
$html .= '<p>' . sprintf( __( "This registration will be invalidated if authentication is not completed within %d hours.", 'usces' ), $remaining_hour ) . '</p>';

$html  .= '<div class="footer_explanation">';
$footer = '';
$html  .= apply_filters( 'usces_filter_memberverifying_page_footer', $footer );
$html  .= '</div>';

$html .= '<p><a href="' . esc_url( USCES_MEMBER_URL ) . '">' . esc_html__( 'to vist membership information page', 'usces' ) . '</a></p>';
$html .= '<div class="send"><a href="' . home_url() . '" class="back_to_top_button">' . esc_html__( 'Back to the top page.', 'usces' ) . '</a></div>';
$html .= '</div>

</div>';

```
