28 lines
969 B
PHP
28 lines
969 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Change Password Form
|
||
|
*/
|
||
|
|
||
|
global $woocommerce;
|
||
|
?>
|
||
|
|
||
|
<?php $woocommerce->show_messages(); ?>
|
||
|
|
||
|
<form action="<?php echo esc_url( get_permalink(get_option('woocommerce_change_password_page_id')) ); ?>" method="post">
|
||
|
|
||
|
<p class="form-row form-row-first">
|
||
|
<label for="password_1"><?php _e('New password', 'woothemes'); ?> <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', 'woothemes'); ?> <span class="required">*</span></label>
|
||
|
<input type="password" class="input-text" name="password_2" id="password_2" />
|
||
|
</p>
|
||
|
<div class="clear"></div>
|
||
|
|
||
|
<p><input type="submit" class="button" name="change_password" value="<?php _e('Save', 'woothemes'); ?>" /></p>
|
||
|
|
||
|
<?php $woocommerce->nonce_field('change_password')?>
|
||
|
<input type="hidden" name="action" value="change_password" />
|
||
|
|
||
|
</form>
|