{% if currentUser %} {% redirect 'shop/checkout/addresses' %} {% endif %} {% extends 'shop/_layouts/checkout' %} {% block content %}

Please sign in

Already Registered?

{{ csrfInput() }} {{ redirectInput('shop/checkout/addresses') }}

Forgot your password?

Guest Checkout

{# Setting the guest email address on the guest customer and order. This will have no affect if the user is currently logged in as the cart uses the currentUsers email address. #}
{{ redirectInput('shop/checkout/addresses') }} {{ csrfInput() }}
{% set emailErrors = cart.getErrors('email') %} {% if emailErrors|length %} {{ emailErrors|join }}
{% endif %}
{% endblock %}