dashboard.php
6 years ago
downloads.php
6 years ago
form-add-payment-method.php
8 years ago
form-edit-account.php
7 years ago
form-edit-address.php
6 years ago
form-login.php
6 years ago
form-lost-password.php
7 years ago
form-reset-password.php
7 years ago
lost-password-confirmation.php
6 years ago
my-account.php
7 years ago
my-address.php
6 years ago
my-downloads.php
6 years ago
my-orders.php
6 years ago
navigation.php
7 years ago
orders.php
6 years ago
payment-methods.php
6 years ago
view-order.php
6 years ago
form-edit-account.php
77 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Edit account form |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-edit-account.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion WooCommerce will need to update template files and you |
| 8 | * (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce/Templates |
| 15 | * @version 3.5.0 |
| 16 | */ |
| 17 | |
| 18 | defined( 'ABSPATH' ) || exit; |
| 19 | |
| 20 | do_action( 'woocommerce_before_edit_account_form' ); ?> |
| 21 | |
| 22 | <form class="woocommerce-EditAccountForm edit-account" action="" method="post" <?php do_action( 'woocommerce_edit_account_form_tag' ); ?> > |
| 23 | |
| 24 | <?php do_action( 'woocommerce_edit_account_form_start' ); ?> |
| 25 | |
| 26 | <p class="woocommerce-form-row woocommerce-form-row--first form-row form-row-first"> |
| 27 | <label for="account_first_name"><?php esc_html_e( 'First name', 'woocommerce' ); ?> <span class="required">*</span></label> |
| 28 | <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 ); ?>" /> |
| 29 | </p> |
| 30 | <p class="woocommerce-form-row woocommerce-form-row--last form-row form-row-last"> |
| 31 | <label for="account_last_name"><?php esc_html_e( 'Last name', 'woocommerce' ); ?> <span class="required">*</span></label> |
| 32 | <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 ); ?>" /> |
| 33 | </p> |
| 34 | <div class="clear"></div> |
| 35 | |
| 36 | <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> |
| 37 | <label for="account_display_name"><?php esc_html_e( 'Display name', 'woocommerce' ); ?> <span class="required">*</span></label> |
| 38 | <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', 'woocommerce' ); ?></em></span> |
| 39 | </p> |
| 40 | <div class="clear"></div> |
| 41 | |
| 42 | <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> |
| 43 | <label for="account_email"><?php esc_html_e( 'Email address', 'woocommerce' ); ?> <span class="required">*</span></label> |
| 44 | <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 ); ?>" /> |
| 45 | </p> |
| 46 | |
| 47 | <fieldset> |
| 48 | <legend><?php esc_html_e( 'Password change', 'woocommerce' ); ?></legend> |
| 49 | |
| 50 | <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> |
| 51 | <label for="password_current"><?php esc_html_e( 'Current password (leave blank to leave unchanged)', 'woocommerce' ); ?></label> |
| 52 | <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_current" id="password_current" autocomplete="off" /> |
| 53 | </p> |
| 54 | <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> |
| 55 | <label for="password_1"><?php esc_html_e( 'New password (leave blank to leave unchanged)', 'woocommerce' ); ?></label> |
| 56 | <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_1" id="password_1" autocomplete="off" /> |
| 57 | </p> |
| 58 | <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> |
| 59 | <label for="password_2"><?php esc_html_e( 'Confirm new password', 'woocommerce' ); ?></label> |
| 60 | <input type="password" class="woocommerce-Input woocommerce-Input--password input-text" name="password_2" id="password_2" autocomplete="off" /> |
| 61 | </p> |
| 62 | </fieldset> |
| 63 | <div class="clear"></div> |
| 64 | |
| 65 | <?php do_action( 'woocommerce_edit_account_form' ); ?> |
| 66 | |
| 67 | <p> |
| 68 | <?php wp_nonce_field( 'save_account_details', 'save-account-details-nonce' ); ?> |
| 69 | <button type="submit" class="woocommerce-Button button" name="save_account_details" value="<?php esc_attr_e( 'Save changes', 'woocommerce' ); ?>"><?php esc_html_e( 'Save changes', 'woocommerce' ); ?></button> |
| 70 | <input type="hidden" name="action" value="save_account_details" /> |
| 71 | </p> |
| 72 | |
| 73 | <?php do_action( 'woocommerce_edit_account_form_end' ); ?> |
| 74 | </form> |
| 75 | |
| 76 | <?php do_action( 'woocommerce_after_edit_account_form' ); ?> |
| 77 |