A checkout stage during which the customers can log in to the online store before placing the order.

Description

This template is used for the 1st stage of the multi-page checkout.

This page is displayed if the customer hasn't logged in yet or no information has been entered at checkout.

The login page should contain at least the following elements:

  • Login form
    The login form should be implemented in such a way that the form has attributes that direct the user to the desired page if the login was successful and redirect the user back to the same page if the login was not successful.
    {Login(
        form_info: 'CheckoutExistingCustomerInfo',
        on_success: '/checkout/customer/',
        on_error: '/checkout/proceed/'
    )}
  • The link to the next checkout stage – not all customers wish to log in.

Template properties

Template location
themes/shop/THEME/checkout/proceed.html
Template URL
/checkout/proceed/
Scope

Useful tags

Default theme implementation

{Helper(file:'checkout/header')}
<div id="MultiPageCheckout" class="clearfix">

	<div class="FormItem HeaderItem">
		<h2>{%CheckoutNewCustomer}</h2>
		<p>{%CheckoutNewCustomerInfo}</p>
	</div>
	<div class="FormItem">
		<p class="Big"><a href="/checkout/customer_information/" class="Button">{%CheckoutContinue}</a></p>
	</div>

	{Login(
		form_info: 'CheckoutExistingCustomerInfo',
		on_success: '/checkout/customer/',
		on_error: '/checkout/proceed/'
	)}

</div>
{Helper(file:'checkout/footer')}