woocommerce/templates/myaccount/form-login.php

108 lines
3.7 KiB
PHP
Raw Normal View History

2012-08-14 18:05:45 +00:00
<?php
/**
* Login Form
*
* @author WooThemes
* @package WooCommerce/Templates
2013-11-13 12:12:23 +00:00
* @version 2.1.0
2012-08-14 18:05:45 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2013-11-13 12:12:23 +00:00
?>
<?php wc_print_notices(); ?>
2012-02-26 11:49:43 +00:00
2014-01-15 05:53:37 +00:00
<?php do_action( 'woocommerce_before_customer_login_form' ); ?>
2014-01-15 05:53:37 +00:00
<?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>
<form method="post" class="login">
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_login_form_start' ); ?>
<p class="form-row form-row-wide">
<label for="username"><?php _e( 'Username or email address', 'woocommerce' ); ?> <span class="required">*</span></label>
<input type="text" class="input-text" name="username" id="username" />
</p>
<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>
<input class="input-text" type="password" name="password" id="password" />
</p>
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_login_form' ); ?>
<p class="form-row">
<?php wp_nonce_field( 'woocommerce-login' ); ?>
2013-10-25 15:10:09 +00:00
<input type="submit" class="button" name="login" value="<?php _e( 'Login', 'woocommerce' ); ?>" />
<label for="rememberme" class="inline">
<input name="rememberme" type="checkbox" id="rememberme" value="forever" /> <?php _e( 'Remember me', 'woocommerce' ); ?>
</label>
</p>
<p class="lost_password">
2013-12-03 16:00:26 +00:00
<a href="<?php echo esc_url( wc_lostpassword_url() ); ?>"><?php _e( 'Lost your password?', 'woocommerce' ); ?></a>
</p>
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_login_form_end' ); ?>
</form>
2014-01-15 05:53:37 +00:00
<?php if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'yes' ) : ?>
</div>
<div class="col-2">
2012-10-16 09:45:33 +00:00
<h2><?php _e( 'Register', 'woocommerce' ); ?></h2>
<form method="post" class="register">
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_register_form_start' ); ?>
2014-01-15 05:53:37 +00:00
<?php if ( get_option( 'woocommerce_registration_generate_username' ) === 'no' ) : ?>
<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>
2014-01-15 05:53:37 +00:00
<input type="text" class="input-text" name="username" id="reg_username" value="<?php if ( ! empty( $_POST['username'] ) ) esc_attr_e( $_POST['username'] ); ?>" />
</p>
<?php endif; ?>
<p class="form-row form-row-wide">
<label for="reg_email"><?php _e( 'Email address', 'woocommerce' ); ?> <span class="required">*</span></label>
2014-01-15 05:53:37 +00:00
<input type="email" class="input-text" name="email" id="reg_email" value="<?php if ( ! empty( $_POST['email'] ) ) esc_attr_e( $_POST['email'] ); ?>" />
</p>
<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>
<input type="password" class="input-text" name="password" id="reg_password" value="<?php if ( ! empty( $_POST['password'] ) ) esc_attr_e( $_POST['password'] ); ?>" />
</p>
<!-- 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>
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_register_form' ); ?>
<?php do_action( 'register_form' ); ?>
<p class="form-row">
<?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' ); ?>" />
</p>
2013-11-13 12:12:23 +00:00
<?php do_action( 'woocommerce_register_form_end' ); ?>
</form>
</div>
</div>
<?php endif; ?>
2014-01-15 05:53:37 +00:00
<?php do_action( 'woocommerce_after_customer_login_form' ); ?>