File manager - Edit - /home/palg2351/public_html/klanaobsesiindonesia.com/wp-includes/Text/Diff/Engine/myaccount.tar
Back
form-reset-password.php 0000644 00000005356 15172765560 0011227 0 ustar 00 <?php /** * Lost password reset form. * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-reset-password.php. * * HOWEVER, on occasion WooCommerce 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.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.2.0 */ defined( 'ABSPATH' ) || exit; do_action( 'woocommerce_before_reset_password_form' ); ?> <form method="post" class="woocommerce-ResetPassword lost_reset_password"> <p><?php echo apply_filters( 'woocommerce_reset_password_message', esc_html__( 'Enter a new password below.', 'conat' ) ); ?></p><?php // @codingStandardsIgnoreLine ?> <p class="woocommerce-form-row woocommerce-form-row--first form-row form-row-first"> <label for="password_1"><?php esc_html_e( 'New password', 'conat' ); ?> <span class="required">*</span></label> <input type="password" class="woocommerce-Input woocommerce-Input--text input-text" name="password_1" id="password_1" autocomplete="new-password" /> </p> <p class="woocommerce-form-row woocommerce-form-row--last form-row form-row-last"> <label for="password_2"><?php esc_html_e( 'Re-enter new password', 'conat' ); ?> <span class="required">*</span></label> <input type="password" class="woocommerce-Input woocommerce-Input--text input-text" name="password_2" id="password_2" autocomplete="new-password" /> </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 do_action( 'woocommerce_resetpassword_form' ); ?> <p class="woocommerce-form-row form-row"> <input type="hidden" name="wc_reset_password" value="true" /> <button type="submit" class="theme-btn btn-style-one woocommerce-Button <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" value="<?php esc_attr_e( 'Save', 'conat' ); ?>"> <span class="btn-wrap"> <span class="text-one"><?php esc_html_e( 'Save', 'conat' ); ?></span> <span class="text-two"><?php esc_html_e( 'Save', 'conat' ); ?></span> </span> </button> </p> <?php wp_nonce_field( 'reset_password', 'woocommerce-reset-password-nonce' ); ?> </form> <?php do_action( 'woocommerce_after_reset_password_form' ); form-edit-address.php 0000644 00000004665 15172765560 0010617 0 ustar 00 <?php /** * Edit address form * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-edit-address.php. * * HOWEVER, on occasion WooCommerce 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.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.3.0 */ defined( 'ABSPATH' ) || exit; $page_title = ( 'billing' === $load_address ) ? esc_html__( 'Billing address', 'conat' ) : esc_html__( 'Shipping address', 'conat' ); do_action( 'woocommerce_before_edit_account_address_form' ); ?> <?php if ( ! $load_address ) : ?> <?php wc_get_template( 'myaccount/my-address.php' ); ?> <?php else : ?> <form method="post"> <h3><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title, $load_address ); ?></h3><?php // @codingStandardsIgnoreLine ?> <div class="woocommerce-address-fields"> <?php do_action( "woocommerce_before_edit_address_form_{$load_address}" ); ?> <div class="woocommerce-address-fields__field-wrapper"> <?php foreach ( $address as $key => $field ) { woocommerce_form_field( $key, $field, wc_get_post_data_by_key( $key, $field['value'] ) ); } ?> </div><br /> <?php do_action( "woocommerce_after_edit_address_form_{$load_address}" ); ?> <p> <button type="submit" class="theme-btn btn-style-one <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="save_address" value="<?php esc_attr_e( 'Save address', 'conat' ); ?>"> <span class="btn-wrap"> <span class="text-one"><?php esc_html_e( 'Save address', 'conat' ); ?></span> <span class="text-two"><?php esc_html_e( 'Save address', 'conat' ); ?></span> </span> </button> <?php wp_nonce_field( 'woocommerce-edit_address', 'woocommerce-edit-address-nonce' ); ?> <input type="hidden" name="action" value="edit_address" /> </p> </div> </form> <?php endif; ?> <?php do_action( 'woocommerce_after_edit_account_address_form' ); ?> form-lost-password.php 0000644 00000004404 15172765560 0011057 0 ustar 00 <?php /** * Lost password form * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-lost-password.php. * * HOWEVER, on occasion WooCommerce 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.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.2.0 */ defined( 'ABSPATH' ) || exit; do_action( 'woocommerce_before_lost_password_form' ); ?> <form method="post" class="woocommerce-ResetPassword lost_reset_password"> <p><?php echo apply_filters( 'woocommerce_lost_password_message', esc_html__( 'Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.', 'conat' ) ); ?></p><?php // @codingStandardsIgnoreLine ?> <p class="woocommerce-form-row woocommerce-form-row--first form-row form-row-first"> <label for="user_login"><?php esc_html_e( 'Username or email', 'conat' ); ?></label> <input class="woocommerce-Input woocommerce-Input--text input-text" type="text" name="user_login" id="user_login" autocomplete="username" /> </p> <div class="clear"></div> <?php do_action( 'woocommerce_lostpassword_form' ); ?> <p class="woocommerce-form-row form-row"> <input type="hidden" name="wc_reset_password" value="true" /> <button type="submit" class="theme-btn btn-style-one woocommerce-Button <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" value="<?php esc_attr_e( 'Reset password', 'conat' ); ?>"> <span class="btn-wrap"> <span class="text-one"><?php esc_html_e( 'Reset password', 'conat' ); ?></span> <span class="text-two"><?php esc_html_e( 'Reset password', 'conat' ); ?></span> </span> </button> </p> <?php wp_nonce_field( 'lost_password', 'woocommerce-lost-password-nonce' ); ?> </form> <?php do_action( 'woocommerce_after_lost_password_form' ); form-edit-account.php 0000644 00000011532 15172765560 0010615 0 ustar 00 <?php /** * Edit account form * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-edit-account.php. * * HOWEVER, on occasion WooCommerce 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.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 8.7.0 */ defined( 'ABSPATH' ) || exit; do_action( 'woocommerce_before_edit_account_form' ); ?> <form class="woocommerce-EditAccountForm edit-account" action="" method="post" <?php do_action( 'woocommerce_edit_account_form_tag' ); ?> > <?php do_action( 'woocommerce_edit_account_form_start' ); ?> <p class="woocommerce-form-row woocommerce-form-row--first form-row form-row-first"> <label for="account_first_name"><?php esc_html_e( 'First name', 'conat' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="account_first_name" id="account_first_name" autocomplete="given-name" value="<?php echo esc_attr( $user->first_name ); ?>" /> </p> <p class="woocommerce-form-row woocommerce-form-row--last form-row form-row-last"> <label for="account_last_name"><?php esc_html_e( 'Last name', 'conat' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="account_last_name" id="account_last_name" autocomplete="family-name" value="<?php echo esc_attr( $user->last_name ); ?>" /> </p> <div class="clear"></div> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="account_display_name"><?php esc_html_e( 'Display name', 'conat' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="account_display_name" id="account_display_name" value="<?php echo esc_attr( $user->display_name ); ?>" /> <span><em><?php esc_html_e( 'This will be how your name will be displayed in the account section and in reviews', 'conat' ); ?></em></span> </p> <div class="clear"></div> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="account_email"><?php esc_html_e( 'Email address', 'conat' ); ?> <span class="required">*</span></label> <input type="email" class="woocommerce-Input woocommerce-Input--email input-text" name="account_email" id="account_email" autocomplete="email" value="<?php echo esc_attr( $user->user_email ); ?>" /> </p> <fieldset> <legend><?php esc_html_e( 'Password change', 'conat' ); ?></legend> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="password_current"><?php esc_html_e( 'Current password (leave blank to leave unchanged)', 'conat' ); ?></label> <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_current" id="password_current" autocomplete="off" /> </p> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="password_1"><?php esc_html_e( 'New password (leave blank to leave unchanged)', 'conat' ); ?></label> <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_1" id="password_1" autocomplete="off" /> </p> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="password_2"><?php esc_html_e( 'Confirm new password', 'conat' ); ?></label> <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_2" id="password_2" autocomplete="off" /> </p> </fieldset> <div class="clear"></div><br /> <?php do_action( 'woocommerce_edit_account_form' ); ?> <p> <?php wp_nonce_field( 'save_account_details', 'save-account-details-nonce' ); ?> <button type="submit" class="theme-btn btn-style-one <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="save_account_details" value="<?php esc_attr_e( 'Save changes', 'conat' ); ?>"> <span class="btn-wrap"> <span class="text-one"><?php esc_html_e( 'Save changes', 'conat' ); ?></span> <span class="text-two"><?php esc_html_e( 'Save changes', 'conat' ); ?></span> </span> </button> <input type="hidden" name="action" value="save_account_details" /> </p> <?php do_action( 'woocommerce_edit_account_form_end' ); ?> </form> <?php do_action( 'woocommerce_after_edit_account_form' ); ?> form-login.php 0000644 00000014233 15172765560 0007347 0 ustar 00 <?php /** * Login Form * * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-login.php. * * HOWEVER, on occasion WooCommerce 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.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 9.2.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } do_action( 'woocommerce_before_customer_login_form' ); ?> <?php if ( 'yes' === get_option( 'woocommerce_enable_myaccount_registration' ) ) : ?> <div class="u-columns col2-set" id="customer_login"> <div class="u-column1 col-1"> <?php endif; ?> <h2><?php esc_html_e( 'Login', 'conat' ); ?></h2> <form class="woocommerce-form woocommerce-form-login login" method="post"> <?php do_action( 'woocommerce_login_form_start' ); ?> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="username"><?php esc_html_e( 'Username or email address', 'conat' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" autocomplete="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( wp_unslash( $_POST['username'] ) ) : ''; ?>" /><?php // @codingStandardsIgnoreLine ?> </p> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="password"><?php esc_html_e( 'Password', 'conat' ); ?> <span class="required">*</span></label> <input class="woocommerce-Input woocommerce-Input--text input-text" type="password" name="password" id="password" autocomplete="current-password" /> </p> <?php do_action( 'woocommerce_login_form' ); ?> <p class="form-row"> <label class="woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme"> <input class="woocommerce-form__input woocommerce-form__input-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /> <span><?php esc_html_e( 'Remember me', 'conat' ); ?></span> </label> <?php wp_nonce_field( 'woocommerce-login', 'woocommerce-login-nonce' ); ?> <button type="submit" class="theme-btn btn-style-one woocommerce-button woocommerce-form-login__submit<?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="login" value="<?php esc_attr_e( 'Log in', 'conat' ); ?>"> <span class="btn-wrap"> <span class="text-one"><?php esc_html_e( 'Log in', 'conat' ); ?></span> <span class="text-two"><?php esc_html_e( 'Log in', 'conat' ); ?></span> </span> </button> </p> <p class="woocommerce-LostPassword lost_password"> <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php esc_html_e( 'Lost your password?', 'conat' ); ?></a> </p> <?php do_action( 'woocommerce_login_form_end' ); ?> </form> <?php if ( 'yes' === get_option( 'woocommerce_enable_myaccount_registration' ) ) : ?> </div> <div class="u-column2 col-2"> <h2><?php esc_html_e( 'Register', 'conat' ); ?></h2> <form method="post" class="woocommerce-form woocommerce-form-register register" <?php do_action( 'woocommerce_register_form_tag' ); ?> > <?php do_action( 'woocommerce_register_form_start' ); ?> <?php if ( 'no' === get_option( 'woocommerce_registration_generate_username' ) ) : ?> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="reg_username"><?php esc_html_e( 'Username', 'conat' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="reg_username" autocomplete="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( wp_unslash( $_POST['username'] ) ) : ''; ?>" /><?php // @codingStandardsIgnoreLine ?> </p> <?php endif; ?> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="reg_email"><?php esc_html_e( 'Email address', 'conat' ); ?> <span class="required">*</span></label> <input type="email" class="woocommerce-Input woocommerce-Input--text input-text" name="email" id="reg_email" autocomplete="email" value="<?php echo ( ! empty( $_POST['email'] ) ) ? esc_attr( wp_unslash( $_POST['email'] ) ) : ''; ?>" /><?php // @codingStandardsIgnoreLine ?> </p> <?php if ( 'no' === get_option( 'woocommerce_registration_generate_password' ) ) : ?> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="reg_password"><?php esc_html_e( 'Password', 'conat' ); ?> <span class="required">*</span></label> <input type="password" class="woocommerce-Input woocommerce-Input--text input-text" name="password" id="reg_password" autocomplete="new-password" /> </p> <?php else : ?> <p><?php esc_html_e( 'A link to set a new password will be sent to your email address.', 'conat' ); ?></p> <?php endif; ?> <?php do_action( 'woocommerce_register_form' ); ?> <p class="woocommerce-form-row form-row"> <?php wp_nonce_field( 'woocommerce-register', 'woocommerce-register-nonce' ); ?> <button type="submit" class="woocommerce-Button woocommerce-button button<?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?> woocommerce-form-register__submit" name="register" value="<?php esc_attr_e( 'Register', 'conat' ); ?>"><?php esc_html_e( 'Register', 'conat' ); ?></button> </p> <?php do_action( 'woocommerce_register_form_end' ); ?> </form> </div> </div> <?php endif; ?> <?php do_action( 'woocommerce_after_customer_login_form' ); ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings