| 1 |
<?php do_action('uwp_template_before', 'forgot'); ?> |
| 2 |
<div class="uwp-content-wrap"> |
| 3 |
<div class="uwp-login"> |
| 4 |
<div class="uwp-lf-icon"><i class="fas fa-user fa-fw"></i></div> |
| 5 |
<?php do_action('uwp_template_form_title_before', 'forgot'); ?> |
| 6 |
<h2> |
| 7 |
<?php $form_title = ! empty( $args['form_title'] ) ? esc_attr__( $args['form_title'], 'userswp' ) : __( 'Forgot Password?', 'userswp' ); |
| 8 |
echo apply_filters('uwp_template_form_title', $form_title, 'forgot'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 9 |
</h2> |
| 10 |
<?php do_action('uwp_template_display_notices', 'forgot'); ?> |
| 11 |
<form class="uwp-login-form uwp_form" method="post"> |
| 12 |
<?php do_action('uwp_template_fields', 'forgot'); ?> |
| 13 |
<input name="uwp_forgot_submit" value="<?php esc_html_e( 'Submit', 'userswp' ); ?>" type="submit"><br> |
| 14 |
</form> |
| 15 |
<div class="uwp-footer-link uwp-forgotpsw"><?php esc_html_e( 'Already a member?', 'userswp' ); ?> <a rel="nofollow" href="<?php echo esc_url( uwp_get_login_page_url() ); ?>"><?php echo uwp_get_option("login_link_title") ? esc_html( uwp_get_option("login_link_title") ) : esc_html__( 'Login here', 'userswp' ); ?></a></div> |
| 16 |
<div class="clfx"></div> |
| 17 |
<div class="uwp-footer-link uwp-register-now"><?php esc_html_e( 'Not a member?', 'userswp' ); ?> <a rel="nofollow" href="<?php echo esc_url( uwp_get_register_page_url() ); ?>"><?php echo uwp_get_option("register_link_title") ? esc_html( uwp_get_option("register_link_title") ) : esc_html__( 'Create account', 'userswp' ); ?></a></div> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
<?php do_action('uwp_template_after', 'forgot'); ?> |