Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
plugins
/
user-registration
/
templates
/
myaccount
/
✏️
Editing: form-reset-password.php
<?php /** * Lost password reset form. * * This template can be overridden by copying it to yourtheme/user-registration/myaccount/form-reset-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.wpuserregistration.com/docs/how-to-edit-user-registration-template-files-such-as-login-form/ * @package UserRegistration/Templates * @version 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $form_template = get_option( 'user_registration_login_options_form_template', 'default' ); $template_class = ''; if ( 'bordered' === $form_template ) { $template_class = 'ur-frontend-form--bordered'; } elseif ( 'flat' === $form_template ) { $template_class = 'ur-frontend-form--flat'; } elseif ( 'rounded' === $form_template ) { $template_class = 'ur-frontend-form--rounded'; } elseif ( 'rounded_edge' === $form_template ) { $template_class = 'ur-frontend-form--rounded ur-frontend-form--rounded-edge'; } ur_print_notices(); ?> <div class="ur-frontend-form login <?php echo esc_attr( $template_class ); ?>" id="ur-frontend-form"> <form method="post" class="user-registration-ResetPassword ur_lost_reset_password" 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"> <p> <?php echo esc_html( /** * Filter to modify the user registration reset password message. * * @param string message content for user registration reset password message. * @return string message content of user registration reset password. */ apply_filters( 'user_registration_reset_password_message', esc_html__( 'Enter a new password below.', 'user-registration' ) ) ); ?> </p> <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' ); ?> <span class="required">*</span></label> <span class="password-input-group"> <input type="password" class="user-registration-Input user-registration-Input--text input-text" name="password_1" id="password_1" /> <?php if ( ur_option_checked( 'user_registration_login_option_hide_show_password', false ) ) { 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( 'Re-enter new password', 'user-registration' ); ?> <span class="required">*</span></label> <span class="password-input-group"> <input type="password" class="user-registration-Input user-registration-Input--text input-text" name="password_2" id="password_2" /> <?php if ( ur_option_checked( 'user_registration_login_option_hide_show_password', false ) ) { echo '<a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title="' . esc_attr__( 'Show Password', 'user-registration' ) . '"></a>'; } ?> </span> </p> <input type="hidden" name="reset_key" value="<?php echo esc_attr( $args['key'] ); ?>" /> <input type="hidden" name="reset_login" value="<?php echo esc_attr( $args['login'] ); ?>" /> <div class="clear"></div> <?php /** * Action to fire the rendering of user registration reset password form. */ do_action( 'user_registration_resetpassword_form' ); ?> <p class="user-registration-form-row form-row"> <input type="hidden" name="ur_reset_password" value="true" /> <input type="submit" class="user-registration-Button button" value="<?php esc_attr_e( 'Save', 'user-registration' ); ?>" /> </p> <?php wp_nonce_field( 'reset_password' ); ?> </div> </div> </form> </div>
💾 Save
❌ Cancel