breadcrumb.php
2 years ago
form-login.php
1 year ago
quantity-input.php
1 year ago
sidebar.php
2 years ago
wrapper-end.php
2 years ago
wrapper-start.php
2 years ago
form-login.php
62 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Login form |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/global/form-login.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://woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce\Templates |
| 15 | * @version 9.2.0 |
| 16 | */ |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; // Exit if accessed directly. |
| 20 | } |
| 21 | |
| 22 | if ( is_user_logged_in() ) { |
| 23 | return; |
| 24 | } |
| 25 | |
| 26 | ?> |
| 27 | <form class="woocommerce-form woocommerce-form-login login" method="post" <?php echo ( $hidden ) ? 'style="display:none;"' : ''; ?>> |
| 28 | |
| 29 | <?php do_action( 'woocommerce_login_form_start' ); ?> |
| 30 | |
| 31 | <?php echo ( $message ) ? wpautop( wptexturize( $message ) ) : ''; // @codingStandardsIgnoreLine ?> |
| 32 | |
| 33 | <p class="form-row form-row-first"> |
| 34 | <label for="username"><?php esc_html_e( 'Username or email', 'woocommerce' ); ?> <span class="required" aria-hidden="true">*</span><span class="screen-reader-text"><?php esc_html_e( 'Required', 'woocommerce' ); ?></span></label> |
| 35 | <input type="text" class="input-text" name="username" id="username" autocomplete="username" required aria-required="true" /> |
| 36 | </p> |
| 37 | <p class="form-row form-row-last"> |
| 38 | <label for="password"><?php esc_html_e( 'Password', 'woocommerce' ); ?> <span class="required" aria-hidden="true">*</span><span class="screen-reader-text"><?php esc_html_e( 'Required', 'woocommerce' ); ?></span></label> |
| 39 | <input class="input-text woocommerce-Input" type="password" name="password" id="password" autocomplete="current-password" required aria-required="true" /> |
| 40 | </p> |
| 41 | <div class="clear"></div> |
| 42 | |
| 43 | <?php do_action( 'woocommerce_login_form' ); ?> |
| 44 | |
| 45 | <p class="form-row"> |
| 46 | <label class="woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme"> |
| 47 | <input class="woocommerce-form__input woocommerce-form__input-checkbox" name="rememberme" type="checkbox" id="rememberme" value="forever" /> <span><?php esc_html_e( 'Remember me', 'woocommerce' ); ?></span> |
| 48 | </label> |
| 49 | <?php wp_nonce_field( 'woocommerce-login', 'woocommerce-login-nonce' ); ?> |
| 50 | <input type="hidden" name="redirect" value="<?php echo esc_url( $redirect ); ?>" /> |
| 51 | <button type="submit" class="woocommerce-button 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( 'Login', 'woocommerce' ); ?>"><?php esc_html_e( 'Login', 'woocommerce' ); ?></button> |
| 52 | </p> |
| 53 | <p class="lost_password"> |
| 54 | <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php esc_html_e( 'Lost your password?', 'woocommerce' ); ?></a> |
| 55 | </p> |
| 56 | |
| 57 | <div class="clear"></div> |
| 58 | |
| 59 | <?php do_action( 'woocommerce_login_form_end' ); ?> |
| 60 | |
| 61 | </form> |
| 62 |