woocommerce/templates/myaccount/form-login.php

100 lines
3.5 KiB
PHP
Raw Normal View History

2012-08-14 18:05:45 +00:00
<?php
/**
* Login Form
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
global $woocommerce; ?>
2012-02-26 11:49:43 +00:00
<?php $woocommerce->show_messages(); ?>
<?php do_action('woocommerce_before_customer_login_form'); ?>
<?php if (get_option('woocommerce_enable_myaccount_registration')=='yes') : ?>
<div class="col2-set" id="customer_login">
<div class="col-1">
<?php endif; ?>
2012-01-05 11:31:22 +00:00
<h2><?php _e('Login', 'woocommerce'); ?></h2>
<form method="post" class="login">
<p class="form-row form-row-first">
<label for="username"><?php _e('Username or email', 'woocommerce'); ?> <span class="required">*</span></label>
<input type="text" class="input-text" name="username" id="username" />
</p>
<p class="form-row form-row-last">
2012-01-05 11:31:22 +00:00
<label for="password"><?php _e('Password', 'woocommerce'); ?> <span class="required">*</span></label>
<input class="input-text" type="password" name="password" id="password" />
</p>
<div class="clear"></div>
<p class="form-row">
<?php $woocommerce->nonce_field('login', 'login') ?>
2012-01-05 11:31:22 +00:00
<input type="submit" class="button" name="login" value="<?php _e('Login', 'woocommerce'); ?>" />
<a class="lost_password" href="<?php echo esc_url( wp_lostpassword_url( home_url() ) ); ?>"><?php _e('Lost Password?', 'woocommerce'); ?></a>
</p>
</form>
<?php if (get_option('woocommerce_enable_myaccount_registration')=='yes') : ?>
</div>
<div class="col-2">
2012-01-05 11:31:22 +00:00
<h2><?php _e('Register', 'woocommerce'); ?></h2>
<form method="post" class="register">
<?php if ( get_option( 'woocommerce_registration_email_for_username' ) == 'no' ) : ?>
<p class="form-row form-row-first">
<label for="reg_username"><?php _e('Username', 'woocommerce'); ?> <span class="required">*</span></label>
<input type="text" class="input-text" name="username" id="reg_username" value="<?php if (isset($_POST['username'])) echo esc_attr($_POST['username']); ?>" />
</p>
<p class="form-row form-row-last">
<?php else : ?>
<p class="form-row form-row-wide">
<?php endif; ?>
2012-01-05 11:31:22 +00:00
<label for="reg_email"><?php _e('Email', 'woocommerce'); ?> <span class="required">*</span></label>
<input type="email" class="input-text" name="email" id="reg_email" value="<?php if (isset($_POST['email'])) echo esc_attr($_POST['email']); ?>" />
</p>
<div class="clear"></div>
<p class="form-row form-row-first">
2012-01-05 11:31:22 +00:00
<label for="reg_password"><?php _e('Password', 'woocommerce'); ?> <span class="required">*</span></label>
<input type="password" class="input-text" name="password" id="reg_password" value="<?php if (isset($_POST['password'])) echo esc_attr($_POST['password']); ?>" />
</p>
<p class="form-row form-row-last">
2012-01-05 11:31:22 +00:00
<label for="reg_password2"><?php _e('Re-enter password', 'woocommerce'); ?> <span class="required">*</span></label>
<input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if (isset($_POST['password2'])) echo esc_attr($_POST['password2']); ?>" />
</p>
<div class="clear"></div>
<!-- Spam Trap -->
<div style="left:-999em; position:absolute;"><label for="trap">Anti-spam</label><input type="text" name="email_2" id="trap" /></div>
<?php do_action( 'register_form' ); ?>
<p class="form-row">
<?php $woocommerce->nonce_field('register', 'register') ?>
2012-01-05 11:31:22 +00:00
<input type="submit" class="button" name="register" value="<?php _e('Register', 'woocommerce'); ?>" />
</p>
</form>
</div>
</div>
<?php endif; ?>
<?php do_action('woocommerce_after_customer_login_form'); ?>