Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
plugins
/
user-registration
/
templates
/
myaccount
/
✏️
Editing: form-login.php
<?php /** * Login Form * * This template can be overridden by copying it to yourtheme/user-registration/myaccount/form-login.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.4.7 */ 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'; } $labels = array( 'username' => get_option( 'user_registration_label_username_or_email', __( 'Username or Email Address', 'user-registration' ) ), 'password' => get_option( 'user_registration_label_password', __( 'Password', 'user-registration' ) ), 'remember_me' => get_option( 'user_registration_label_remember_me', __( 'Remember Me', 'user-registration' ) ), 'login' => get_option( 'user_registration_label_login', __( 'Login', 'user-registration' ) ), 'lost_your_password' => get_option( 'user_registration_label_lost_your_password', __( 'Lost your password?', 'user-registration' ) ), ); $placeholders = array( 'username' => get_option( 'user_registration_placeholder_username_or_email', '' ), 'password' => get_option( 'user_registration_placeholder_password', '' ), ); $hide_labels = ur_option_checked( 'user_registration_login_options_hide_labels', false ); $enable_ajax = ur_option_checked( 'ur_login_ajax_submission', false ); $enable_field_icon = ur_option_checked( 'user_registration_pro_general_setting_login_form', false ); $login_title = ur_option_checked( 'user_registration_login_title', false ); $is_passwordless_enabled = ! ur_is_passwordless_login_enabled() || ! isset( $_GET['pl'] ) || ! ur_string_to_bool( $_GET['pl'] ); // phpcs:ignore; $is_login_settings = ( isset( $_GET['page'] ) && 'user-registration-login-forms' === $_GET['page'] ) ? true : false; $settings_class = $is_login_settings ? 'user-registration-login-settings-form' : ''; $template_class .= ' ' . $settings_class; /** * Check passwordless login as default Login Page is enabled or not. * * @since 4.0 */ if ( ur_is_passwordless_login_enabled() ) { $is_passwordless_login_default_login_area_enabled = ur_is_user_registration_pro_passwordless_login_default_login_area_enabled(); } else { $is_passwordless_login_default_login_area_enabled = 0; } /** * Action to fire before the rendering of customer login form. */ do_action( 'user_registration_before_customer_login_form' ); /** * Filter to modify the notice content before rendering of user registration login form. * * @param function Print notice function. * @return function. */ ur_add_notice( apply_filters( 'user_registration_post_login_errors', '' ), 'error' ); if ( ! $is_passwordless_enabled || $is_passwordless_login_default_login_area_enabled ) { ur_add_notice( apply_filters( 'user_registration_passwordless_login_notice', '' ), 'success' ); } apply_filters( 'user_registration_login_form_before_notice', ur_print_notices() ); ?> <div class="ur-frontend-form login <?php echo esc_attr( $template_class ); ?>" id="ur-frontend-form"> <?php if ( isset( $_GET['force-logout'] ) && 'true' === $_GET['force-logout'] ) { ur_print_notice( __( 'Password changed successfully.', 'user-registration' ), 'success' ); } ?> <form class="user-registration-form user-registration-form-login login" method="post"> <div class="ur-form-row"> <div class="ur-form-grid"> <?php if ( $login_title || $is_login_settings ) { $login_title_label = /** * Filter to modify the login title. * * @param array $labels['login]. * @return array. */ apply_filters( 'ur_login_title', __( 'Welcome', 'user-registration' ) ); $login_title_description = /** * Filter to modify the login title description. * * @param array $labels['login]. * @return array. */ apply_filters( 'ur_login_title_description', __( 'Please enter your details to access your account.', 'user-registration' ) ); /* translators: %s - Login Title. */ echo wp_kses_post( sprintf( __( '<span class="user-registration-login-title"> %s </span> </br>', 'user-registration' ), $login_title_label ) ); echo wp_kses_post( sprintf( __( '<p class="user-registration-login-description"> %s </p>', 'user-registration' ), $login_title_description ) ); } ?> <?php /** * Action to fire at the start of rendering the login form. */ do_action( 'user_registration_login_form_start' ); ?> <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide" data-field="username"> <?php if ( ! $hide_labels || $is_login_settings ) { printf( '<label for="username">%s <span class="required">*</span></label>', esc_html( $labels['username'] ) ); } ?> <span class="input-wrapper"> <input placeholder="<?php echo esc_attr( $placeholders['username'] ); ?>" type="text" class="user-registration-Input user-registration-Input--text input-text" name="username" id="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( wp_unslash( sanitize_text_field( $_POST['username'] ) ) ) : ''; // phpcs:ignore ?>" style="<?php echo ($enable_field_icon || $is_login_settings && is_plugin_active( 'user-registration-pro/user-registration.php' )) ? "padding-left: 32px !important" : '' ?>"/> <?php if ( $enable_field_icon || $is_login_settings && is_plugin_active( 'user-registration-pro/user-registration.php' ) ) { ?> <span class="ur-icon ur-icon-user"> </span> <?php } ?> </span> </p> <?php if ( ( $is_passwordless_enabled && ! $is_passwordless_login_default_login_area_enabled ) || $is_login_settings ) : ?> <p class="user-registration-form-row user-registration-form-row--wide form-row form-row-wide<?php echo ( ur_option_checked( 'user_registration_login_option_hide_show_password', false ) ) ? ' hide_show_password' : ''; ?>"> <?php if ( ! $hide_labels || $is_login_settings ) { printf( '<label for="password">%s <span class="required">*</span></label>', esc_html( $labels['password'] ) ); } ?> <span class="input-wrapper"> <span class="password-input-group"> <input placeholder="<?php echo esc_attr( $placeholders['password'] ); ?>" class="user-registration-Input user-registration-Input--text input-text" type="password" name="password" id="password" style="<?php echo ( $enable_field_icon || $is_login_settings && is_plugin_active( 'user-registration-pro/user-registration.php' ) ) ? 'padding-left: 32px !important' : ''; ?>" /> <?php if ( ur_option_checked( 'user_registration_login_option_hide_show_password', false ) ) { ?> <a href="javaScript:void(0)" class="password_preview dashicons dashicons-hidden" title="<?php echo esc_attr__( 'Show password', 'user-registration' ); ?>"></a> </span> <?php } ?> <?php if ( $enable_field_icon || $is_login_settings && is_plugin_active( 'user-registration-pro/user-registration.php' ) ) { ?> <span class="ur-icon ur-icon-password"></span> <?php } ?> </span> </p> <?php endif; ?> <?php if ( ! empty( $recaptcha_node ) ) { echo '<div id="ur-recaptcha-node"> ' . $recaptcha_node . '</div>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } ?> <?php /** * Action to fire after rendering of user registration login form. */ do_action( 'user_registration_login_form' ); ?> <p class="form-row"> <?php wp_nonce_field( 'user-registration-login', 'user-registration-login-nonce' ); if ( ( $is_passwordless_enabled && ! $is_passwordless_login_default_login_area_enabled ) || $is_login_settings ) { ?> <div class="user-registration-before-login-btn"> <?php $remember_me_enabled = ur_option_checked( 'user_registration_login_options_remember_me', true ); if ( ( $remember_me_enabled && $is_passwordless_enabled && ! $is_passwordless_login_default_login_area_enabled ) || $is_login_settings ) { ?> <label class="user-registration-form__label user-registration-form__label-for-checkbox inline"> <input class="user-registration-form__input user-registration-form__input-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /> <span><?php echo esc_html( $labels['remember_me'] ); ?></span> </label> <?php } ?> <?php $lost_password_enabled = ur_option_checked( 'user_registration_login_options_lost_password', true ); if ( ( $lost_password_enabled && $is_passwordless_enabled && ! $is_passwordless_login_default_login_area_enabled ) || $is_login_settings ) { ?> <p class="user-registration-LostPassword lost_password"> <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php echo esc_html( $labels['lost_your_password'] ); ?></a> </p> <?php } ?> </div> <?php } ?> </p> <div> <?php /** * Action to fire before rendering of submit button for user registration login form. */ do_action( 'user_registration_login_form_before_submit_button' ); ?> <?php if ( $enable_ajax ) { ?> <button type="submit" class="user-registration-Button button ur-submit-button" id="user_registration_ajax_login_submit" name="login" value="<?php echo esc_html( $labels['login'] ); ?>" <?php echo ( $is_login_settings || ( isset( $_GET['ur_login_preview'] ) && $_GET['ur_login_preview'] ) ) ? 'disabled' : ''; ?>><?php echo esc_html( $labels['login'] ); ?><span></span></button> <?php } else { ?> <button type="submit" class="user-registration-Button button " name="login" value="<?php echo esc_html( $labels['login'] ); ?>"<?php echo ( $is_login_settings || ( isset( $_GET['ur_login_preview'] ) && $_GET['ur_login_preview'] ) ) ? 'disabled' : ''; ?> ><?php echo esc_html( $labels['login'] ); ?></button> <?php } ?> </div> <input type="hidden" name="redirect" value="<?php echo isset( $redirect ) ? esc_attr( $redirect ) : esc_attr( the_permalink() ); ?>" /> <?php $users_can_register = ur_option_checked( 'users_can_register', true ); if ( $users_can_register ) { $url_options = get_option( 'user_registration_general_setting_registration_url_options' ); if ( ! empty( $url_options ) || $is_login_settings ) { $url_pattern = "/^https?:\\/\\/(?:www\\.)?[-a-zA-Z0-9@:%._\\+~#=]{1,256}(\\.[a-zA-Z0-9()]{1,6})?\\b(?:[-a-zA-Z0-9()@:%_\\+.~#?&\\/=]*)$/"; if ( ! filter_var( $url_options, FILTER_VALIDATE_URL ) || ! preg_match( $url_pattern, $url_options ) ) { $url_options = home_url( $url_options ); } echo '<p class="user-registration-register register">'; $label = get_option( 'user_registration_general_setting_registration_label' ); if ( ! empty( $label ) ) { ?> <a href="<?php echo esc_url( $url_options ); ?>"> <?php echo stripslashes( esc_html( get_option( 'user_registration_general_setting_registration_label' ) ) ); ?> </a> <?php } else { update_option( 'user_registration_general_setting_registration_label', __( 'Not a member yet? Register now.', 'user-registration' ) ); ?> <a href="<?php echo esc_url( $url_options ); ?>"> <?php echo esc_html( get_option( 'user_registration_general_setting_registration_label' ) ); ?> </a> <?php } echo '</p>'; } } ?> <?php /** * Action to fire at the end of rendering the user registration form. */ do_action( 'user_registration_login_form_end' ); ?> </div> </div> </form> </div> <?php /** * Action to fire after the rendering of user registration login form. */ do_action( 'user_registration_after_login_form' ); ?>
💾 Save
❌ Cancel