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

Kuvaus

This template is used for the 1{^>st<^}{^> <^}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.

Sivupohjan ominaisuudet

Sivupohjan sijainti
themes/shop/THEME/checkout/proceed.html
Sivupohjan URL
/checkout/proceed/
Asetettu näkyvyys

Hyödyllisiä tageja

Toteutus oletusteemassa

{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')}