2012-10-04 18:51:07 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* Lost password form
2012-10-04 18:51:07 +00:00
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme / woocommerce / myaccount / form - lost - password . php .
2015-10-01 14:07:20 +00:00
*
2016-02-12 11:28:41 +00:00
* 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 .
2015-10-01 14:07:20 +00:00
*
2016-07-19 10:30:31 +00:00
* @ see https :// docs . woocommerce . com / document / template - structure /
2014-11-19 18:57:26 +00:00
* @ author WooThemes
* @ package WooCommerce / Templates
2017-11-07 10:21:05 +00:00
* @ version 3.3 . 0
2012-10-04 18:51:07 +00:00
*/
2014-04-23 10:35:43 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
2016-04-27 15:00:30 +00:00
exit ;
2014-04-23 10:35:43 +00:00
}
2014-09-22 16:31:03 +00:00
2016-04-27 15:00:30 +00:00
wc_print_notices (); ?>
2012-10-04 18:51:07 +00:00
2016-04-15 14:11:11 +00:00
< form method = " post " class = " woocommerce-ResetPassword lost_reset_password " >
2012-10-04 18:51:07 +00:00
2017-11-07 10:21:05 +00:00
< 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.' , 'woocommerce' ) ); ?> </p><?php // @codingStandardsIgnoreLine ?>
2012-10-04 18:51:07 +00:00
2016-11-17 11:56:57 +00:00
< p class = " woocommerce-form-row woocommerce-form-row--first form-row form-row-first " >
2017-11-07 10:21:05 +00:00
< label for = " user_login " >< ? php esc_html_e ( 'Username or email' , 'woocommerce' ); ?> </label>
2016-04-27 15:00:30 +00:00
< input class = " woocommerce-Input woocommerce-Input--text input-text " type = " text " name = " user_login " id = " user_login " />
</ p >
2012-10-04 18:51:07 +00:00
2014-10-16 19:59:45 +00:00
< div class = " clear " ></ div >
2012-10-04 18:51:07 +00:00
2015-03-20 16:44:11 +00:00
< ? php do_action ( 'woocommerce_lostpassword_form' ); ?>
2016-11-17 11:56:57 +00:00
< p class = " woocommerce-form-row form-row " >
2014-11-19 18:57:26 +00:00
< input type = " hidden " name = " wc_reset_password " value = " true " />
2017-11-07 10:21:50 +00:00
< button type = " submit " class = " woocommerce-Button button " value = " <?php esc_attr_e( 'Reset password', 'woocommerce' ); ?> " >< ? php esc_html_e ( 'Reset password' , 'woocommerce' ); ?> </button>
2014-11-19 18:57:26 +00:00
</ p >
2016-04-27 15:00:30 +00:00
< ? php wp_nonce_field ( 'lost_password' ); ?>
2012-10-04 18:51:07 +00:00
2014-09-22 16:31:03 +00:00
</ form >