2011-12-12 12:28:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Login form
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
2011-12-12 12:28:07 +00:00
|
|
|
*/
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-08-10 11:15:32 +00:00
|
|
|
global $woocommerce;
|
2011-12-12 12:28:07 +00:00
|
|
|
|
|
|
|
if (is_user_logged_in()) return;
|
|
|
|
?>
|
2013-02-25 10:17:16 +00:00
|
|
|
<form method="post" class="login" <?php if ( $hidden ) echo 'style="display:none;"'; ?>>
|
|
|
|
<?php if ( $message ) echo wpautop( wptexturize( $message ) ); ?>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-12-12 12:28:07 +00:00
|
|
|
<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-12-12 12:28:07 +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-12-12 12:28:07 +00:00
|
|
|
<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-10-16 09:45:33 +00:00
|
|
|
<input type="submit" class="button" name="login" value="<?php _e( 'Login', 'woocommerce' ); ?>" />
|
2012-10-16 15:35:16 +00:00
|
|
|
<input type="hidden" name="redirect" value="<?php echo esc_url( $redirect ) ?>" />
|
2012-10-16 09:45:33 +00:00
|
|
|
<a class="lost_password" href="<?php echo esc_url( wp_lostpassword_url( home_url() ) ); ?>"><?php _e( 'Lost Password?', 'woocommerce' ); ?></a>
|
2011-12-12 12:28:07 +00:00
|
|
|
</p>
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2011-12-19 17:10:53 +00:00
|
|
|
<div class="clear"></div>
|
2011-12-12 12:28:07 +00:00
|
|
|
</form>
|