2012-08-14 18:05:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Login Form
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
|
|
|
*/
|
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-08-14 18:05:45 +00:00
|
|
|
global $woocommerce; ?>
|
2011-11-14 16:46:11 +00:00
|
|
|
|
2012-02-26 11:49:43 +00:00
|
|
|
<?php $woocommerce->show_messages(); ?>
|
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<?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-10-16 09:45:33 +00:00
|
|
|
<h2><?php _e( 'Login', 'woocommerce' ); ?></h2>
|
2011-11-14 16:46:11 +00:00
|
|
|
<form method="post" class="login">
|
|
|
|
<p class="form-row form-row-first">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="username"><?php _e( 'Username or email', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2011-11-14 16:46:11 +00:00
|
|
|
<input type="text" class="input-text" name="username" id="username" />
|
|
|
|
</p>
|
|
|
|
<p class="form-row form-row-last">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2011-11-14 16:46:11 +00:00
|
|
|
<input class="input-text" type="password" name="password" id="password" />
|
|
|
|
</p>
|
|
|
|
<div class="clear"></div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<p class="form-row">
|
|
|
|
<?php $woocommerce->nonce_field('login', 'login') ?>
|
2012-10-16 09:45:33 +00:00
|
|
|
<input type="submit" class="button" name="login" value="<?php _e( 'Login', 'woocommerce' ); ?>" />
|
2012-11-27 16:22:47 +00:00
|
|
|
<a class="lost_password" href="<?php
|
2012-10-10 09:32:22 +00:00
|
|
|
|
|
|
|
$lost_password_page_id = woocommerce_get_page_id( 'lost_password' );
|
2012-11-27 16:22:47 +00:00
|
|
|
|
|
|
|
if ( $lost_password_page_id )
|
2012-10-10 09:32:22 +00:00
|
|
|
echo esc_url( get_permalink( $lost_password_page_id ) );
|
2012-11-27 16:22:47 +00:00
|
|
|
else
|
|
|
|
echo esc_url( wp_lostpassword_url( home_url() ) );
|
|
|
|
|
2012-10-16 09:45:33 +00:00
|
|
|
?>"><?php _e( 'Lost Password?', 'woocommerce' ); ?></a>
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
2012-08-10 11:15:32 +00:00
|
|
|
<?php if (get_option('woocommerce_enable_myaccount_registration')=='yes') : ?>
|
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
</div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<div class="col-2">
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-10-16 09:45:33 +00:00
|
|
|
<h2><?php _e( 'Register', 'woocommerce' ); ?></h2>
|
2012-06-10 13:26:07 +00:00
|
|
|
<form method="post" class="register">
|
2012-08-10 11:15:32 +00:00
|
|
|
|
|
|
|
<?php if ( get_option( 'woocommerce_registration_email_for_username' ) == 'no' ) : ?>
|
|
|
|
|
|
|
|
<p class="form-row form-row-first">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="reg_username"><?php _e( 'Username', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2012-08-10 11:15:32 +00:00
|
|
|
<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-10-16 09:45:33 +00:00
|
|
|
<label for="reg_email"><?php _e( 'Email', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2012-06-10 13:26:07 +00:00
|
|
|
<input type="email" class="input-text" name="email" id="reg_email" value="<?php if (isset($_POST['email'])) echo esc_attr($_POST['email']); ?>" />
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<div class="clear"></div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<p class="form-row form-row-first">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="reg_password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2012-06-10 13:26:07 +00:00
|
|
|
<input type="password" class="input-text" name="password" id="reg_password" value="<?php if (isset($_POST['password'])) echo esc_attr($_POST['password']); ?>" />
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
|
|
|
<p class="form-row form-row-last">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="reg_password2"><?php _e( 'Re-enter password', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2012-06-10 13:26:07 +00:00
|
|
|
<input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if (isset($_POST['password2'])) echo esc_attr($_POST['password2']); ?>" />
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
|
|
|
<div class="clear"></div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<!-- Spam Trap -->
|
|
|
|
<div style="left:-999em; position:absolute;"><label for="trap">Anti-spam</label><input type="text" name="email_2" id="trap" /></div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-06-10 13:26:07 +00:00
|
|
|
<?php do_action( 'register_form' ); ?>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<p class="form-row">
|
|
|
|
<?php $woocommerce->nonce_field('register', 'register') ?>
|
2012-10-16 09:45:33 +00:00
|
|
|
<input type="submit" class="button" name="register" value="<?php _e( 'Register', 'woocommerce' ); ?>" />
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
</form>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
</div>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php do_action('woocommerce_after_customer_login_form'); ?>
|