| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/design/frontend/default/iphone/template/checkout/onepage/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category design
* @package default_iphone
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
?>
<div class="col2-set">
<div class="col-1">
<h4> <br /><?php echo $this->__('Login') ?></h4>
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
<form id="login-form" action="<?php echo $this->getPostAction() ?>" method="post">
<p><strong><?php echo $this->__('Already registered?') ?></strong><br />
<?php echo $this->__('Please log in below:') ?></p>
<ul class="form-list">
<li>
<label for="email"><?php echo $this->__('Email Address') ?> <span class="required">*</span></label><br />
<input type="text" class="input-text required-entry validate-email" id="email" name="login[username]" value="<?php echo $this->htmlEscape($this->getUsername()) ?>" />
</li>
<li>
<label for="password"><?php echo $this->__('Password') ?> <span class="required">*</span></label><br />
<input type="password" class="input-text required-entry" id="password" name="login[password]" />
</li>
</ul>
<p class="required a-right" style="padding-right:8px;"><?php echo $this->__('* Required Fields') ?></p>
<p class="a-right" style="padding-right:8px;"><button class="form-button" onclick="onepageLogin(this)" ><span><?php echo $this->__('Login') ?></span></button></p>
<p class="a-center" style="padding-top:5px;"><a href="<?php echo $this->getUrl('customer/account/forgotpassword') ?>" class="left"><?php echo $this->__('Forgot your password?') ?></a></p>
</form>
</div>
<div class="col-2">
<h4><?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?><?php echo $this->__('Checkout as a Guest<br />or Register') ?><?php else: ?><?php echo $this->__('Register to Create an Account') ?><?php endif; ?></h4>
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
<p><?php echo $this->__('Register with us for future convenience:') ?></p>
<?php else: ?>
<strong><?php echo $this->__('Register and save time!') ?></strong><br />
<?php echo $this->__('Register with us for future convenience:') ?>
<ul class="disc">
<li><?php echo $this->__('Fast and easy check out') ?></li>
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
</ul>
<?php endif; ?>
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
<ul class="form-list">
<?php if( $this->getQuote()->isAllowedGuestCheckout() ): ?>
<li style="marin:0;padding:0;">
<div class="col2-alt-set">
<div class="col-1">
<input type="radio" name="checkout_method" id="login:guest" value="guest"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_GUEST): ?> checked="checked"<?php endif ?> />
</div>
<div class="col-2" style="padding-top:5px;">
<label for="login:guest"><?php echo $this->__('Checkout as Guest') ?></label>
</div>
</div><div class="clear"></div>
</li>
<?php endif; ?>
<li style="marin:0;padding:0;">
<div class="col2-alt-set">
<div class="col-1">
<input type="radio" name="checkout_method" id="login:register" value="register"<?php if($this->getQuote()->getCheckoutMethod()==Mage_Checkout_Model_Type_Onepage::METHOD_REGISTER || !$this->getQuote()->isAllowedGuestCheckout()): ?> checked="checked"<?php endif ?> />
</div>
<div class="col-2" style="padding-top:5px;">
<label for="login:register"><?php echo $this->__('Register') ?></label>
</div>
</div><div class="clear"></div>
</li>
</ul>
<div style="margin:10px 5px 0 5px;">
<strong><?php echo $this->__('Register and save time!') ?></strong><br />
<?php echo $this->__('Register with us for future convenience:') ?>
<ul class="disc">
<li><?php echo $this->__('Fast and easy check out') ?></li>
<li><?php echo $this->__('Easy access to your order history and status') ?></li>
</ul>
</div>
<?php else: ?>
<input type="hidden" name="checkout_method" id="login:register" value="register" checked="checked" />
<?php endif; ?>
<div class="col2-alt-set button-set" style="padding-top:5px;">
<div class="col-1">
<p class="required"> </p>
</div>
<div class="col-2">
<div class="form-buttons">
<button type="button" class="form-button" onclick="checkout.setMethod();"><span><?php echo ($this->getQuote()->isAllowedGuestCheckout() ? $this->__('Continue') : $this->__('Register')) ?></span></button>
</div>
</div>
</div><div class="clear"></div>
</div>
</div><div class="clear"></div>
<script type="text/javascript">
var loginForm = new VarienForm('login-form', true);
function onepageLogin(button)
{
if(loginForm.validator && loginForm.validator.validate()){
button.disabled = true;
loginForm.submit();
}
}
</script>