woocommerce/templates/myaccount/form-lost-password.php

65 lines
2.5 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Lost password form
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-lost-password.php.
*
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.
*
* @see http://docs.woothemes.com/document/template-structure/
2014-11-19 18:57:26 +00:00
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.3.0
*/
2014-04-23 10:35:43 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
2014-04-23 10:35:43 +00:00
}
?>
<?php wc_print_notices(); ?>
<form method="post" class="lost_reset_password">
<?php if( 'lost_password' === $args['form'] ) : ?>
2014-10-16 19:59:45 +00:00
<p><?php echo apply_filters( 'woocommerce_lost_password_message', __( 'Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.', 'woocommerce' ) ); ?></p>
2014-10-16 19:59:45 +00:00
<p class="form-row form-row-first"><label for="user_login"><?php _e( 'Username or email', 'woocommerce' ); ?></label> <input class="input-text" type="text" name="user_login" id="user_login" /></p>
<?php else : ?>
2014-10-16 19:59:45 +00:00
<p><?php echo apply_filters( 'woocommerce_reset_password_message', __( 'Enter a new password below.', 'woocommerce') ); ?></p>
2014-10-16 19:59:45 +00:00
<p class="form-row form-row-first">
<label for="password_1"><?php _e( 'New password', 'woocommerce' ); ?> <span class="required">*</span></label>
<input type="password" class="input-text" name="password_1" id="password_1" />
</p>
<p class="form-row form-row-last">
<label for="password_2"><?php _e( 'Re-enter new password', 'woocommerce' ); ?> <span class="required">*</span></label>
<input type="password" class="input-text" name="password_2" id="password_2" />
</p>
2014-10-16 19:59:45 +00:00
<input type="hidden" name="reset_key" value="<?php echo isset( $args['key'] ) ? $args['key'] : ''; ?>" />
<input type="hidden" name="reset_login" value="<?php echo isset( $args['login'] ) ? $args['login'] : ''; ?>" />
2013-07-30 12:38:45 +00:00
2014-10-16 19:59:45 +00:00
<?php endif; ?>
2014-10-16 19:59:45 +00:00
<div class="clear"></div>
<?php do_action( 'woocommerce_lostpassword_form' ); ?>
2014-11-19 18:57:26 +00:00
<p class="form-row">
<input type="hidden" name="wc_reset_password" value="true" />
<input type="submit" class="button" value="<?php echo 'lost_password' === $args['form'] ? __( 'Reset Password', 'woocommerce' ) : __( 'Save', 'woocommerce' ); ?>" />
2014-11-19 18:57:26 +00:00
</p>
2013-06-11 16:55:55 +00:00
<?php wp_nonce_field( $args['form'] ); ?>
</form>