PATH:
home
/
lab2454c
/
archswipe.com
/
wp-content
/
plugins
/
user-registration-pro
/
templates
/
myaccount
<?php /** * Edit account form * * This template can be overridden by copying it to yourtheme/user-registration/myaccount/form-edit-password.php. * * HOWEVER, on occasion UserRegistration will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.wpeverest.com/user-registration/template-structure/ * @author WPEverest * @package UserRegistration/Templates * @version 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ur_do_deprecated_action( 'user_registration_before_edit_account_form', array(), '1.4.2', 'user_registration_before_change_password_form' ); do_action( 'user_registration_before_change_password_form' ); ?> <div class="ur-frontend-form login" id="ur-frontend-form"> <form class="user-registration-EditAccountForm edit-password" action="" method="post" data-enable-strength-password="<?php echo esc_attr( $enable_strong_password ); ?>" data-minimum-password-strength="<?php echo esc_attr( $minimum_password_strength ); ?>" > <div class="ur-form-row"> <div class="ur-form-grid"> <?php ur_do_deprecated_action( 'user_registration_edit_account_form_start', array(), '1.4.2', 'user_registration_change_password_form_start' ); do_action( 'user_registration_change_password_form_start' ); ?> <fieldset> <legend><?php esc_html_e( 'Change Password', 'user-registration' ); ?></legend> <?php if ( apply_filters( 'user_registration_change_password_current_password_display', true ) ) { ?> <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password"> <label for="password_current"><?php esc_html_e( 'Current password', 'user-registration' ); ?></label> <span class="password-input-group"> <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_current" id="password_current" /> <?php if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) { echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title="' . esc_attr__( 'Show Password', 'user-registration' ) . '"></a>'; } ?> </span> </p> <?php } ?> <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password"> <label for="password_1"><?php esc_html_e( 'New password', 'user-registration' ); ?></label> <span class="password-input-group"> <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_1" id="password_1" /> <?php if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) { echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title="' . esc_attr__( 'Show Password', 'user-registration' ) . '"></a>'; } ?> </span> </p> <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide hide_show_password"> <label for="password_2"><?php esc_html_e( 'Confirm new password', 'user-registration' ); ?></label> <span class="password-input-group"> <input type="password" class="user-registration-Input user-registration-Input--password input-text" name="password_2" id="password_2" /> <?php if ( 'yes' === get_option( 'user_registration_login_option_hide_show_password', 'no' ) ) { echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title="' . esc_attr__( 'Show Password', 'user-registration' ) . '"></a>'; } ?> </span> </p> </fieldset> <div class="clear"></div> <?php ur_do_deprecated_action( 'user_registration_edit_account_form', array(), '1.4.2', 'user_registration_change_password_form' ); do_action( 'user_registration_change_password_form' ); ?> <p> <?php wp_nonce_field( 'save_change_password' ); ?> <input type="submit" class="user-registration-Button button" name="save_change_password" value="<?php esc_attr_e( 'Save changes', 'user-registration' ); ?>" /> <input type="hidden" name="action" value="save_change_password" /> </p> <?php ur_do_deprecated_action( 'user_registration_edit_account_form_end', array(), '1.4.2', 'user_registration_change_password_form_end' ); do_action( 'user_registration_change_password_form_end' ); ?> </div> </div> </form> </div> <?php ur_do_deprecated_action( 'user_registration_after_edit_account_form', array(), '1.4.1', 'user_registration_after_change_password_form' ); do_action( 'user_registration_after_edit_account_form' ); ?>
[-] form-lost-password.php
[edit]
[-] index.php
[edit]
[+]
..
[-] form-edit-profile.php
[edit]
[-] lost-password-confirmation.php
[edit]
[-] navigation.php
[edit]
[-] dashboard.php
[edit]
[-] .htaccess
[edit]
[-] my-account.php
[edit]
[-] form-reset-password.php
[edit]
[-] form-login.php
[edit]
[-] form-edit-password.php
[edit]