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
|
|
|
|
2013-06-11 14:59:54 +00:00
|
|
|
<?php wc_print_messages(); ?>
|
2012-02-26 11:49:43 +00:00
|
|
|
|
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>
|
2013-06-04 15:33:05 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<form method="post" class="login">
|
2013-06-04 15:33:05 +00:00
|
|
|
<p class="form-row form-row-wide">
|
|
|
|
<label for="username"><?php _e( 'Username or email address', '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>
|
2013-06-04 15:33:05 +00:00
|
|
|
<p class="form-row form-row-wide">
|
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>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-11-14 16:46:11 +00:00
|
|
|
<p class="form-row">
|
2013-06-11 16:55:55 +00:00
|
|
|
<?php wp_nonce_field( 'woocommerce-login', 'login') ?>
|
2013-07-23 16:05:01 +00:00
|
|
|
<input type="submit" class="button" name="login" value="<?php _e( 'Login', 'woocommerce' ); ?>" /> <a class="lost_password" href="<?php echo esc_url( woocommerce_get_endpoint_url( 'lost-password', '', get_permalink( woocommerce_get_page_id( 'myaccount' ) ) ) ); ?>"><?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>
|
2013-06-04 15:33:05 +00:00
|
|
|
|
2012-06-10 13:26:07 +00:00
|
|
|
<form method="post" class="register">
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2013-06-04 15:33:05 +00:00
|
|
|
<?php if ( get_option( 'woocommerce_registration_generate_username' ) == 'no' ) : ?>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2013-06-04 15:33:05 +00:00
|
|
|
<p class="form-row form-row-wide">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="reg_username"><?php _e( 'Username', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2013-06-04 15:33:05 +00:00
|
|
|
<input type="text" class="input-text" name="username" id="reg_username" value="<?php if ( ! empty( $_POST['username'] ) ) esc_attr_e($_POST['username']); ?>" />
|
2012-08-10 11:15:32 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2013-06-04 15:33:05 +00:00
|
|
|
<p class="form-row form-row-wide">
|
|
|
|
<label for="reg_email"><?php _e( 'Email address', 'woocommerce' ); ?> <span class="required">*</span></label>
|
|
|
|
<input type="email" class="input-text" name="email" id="reg_email" value="<?php if ( ! empty( $_POST['email'] ) ) esc_attr_e($_POST['email']); ?>" />
|
2011-11-14 16:46:11 +00:00
|
|
|
</p>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2013-06-04 15:33:05 +00:00
|
|
|
<p class="form-row form-row-wide">
|
2012-10-16 09:45:33 +00:00
|
|
|
<label for="reg_password"><?php _e( 'Password', 'woocommerce' ); ?> <span class="required">*</span></label>
|
2013-06-04 15:33:05 +00:00
|
|
|
<input type="password" class="input-text" name="password" id="reg_password" value="<?php if ( ! empty( $_POST['password'] ) ) esc_attr_e( $_POST['password'] ); ?>" />
|
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
|
|
|
<!-- Spam Trap -->
|
2013-07-19 13:46:02 +00:00
|
|
|
<div style="left:-999em; position:absolute;"><label for="trap"><?php _e( 'Anti-spam', 'woocommerce' ); ?></label><input type="text" name="email_2" id="trap" tabindex="-1" /></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">
|
2013-06-11 16:55:55 +00:00
|
|
|
<?php wp_nonce_field( 'woocommerce-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>
|
|
|
|
</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'); ?>
|