{% extends "checkout/layout.html" %} {% load currency_filters %} {% block title %} Checkout gateway | {{ block.super }} {% endblock %} {% block checkout-nav %} {% include 'checkout/nav.html' with step=0 %} {% endblock %} {% block content %}

Who are you?

{% csrf_token %} {{ form.non_field_errors }}
{{ form.username }} {% for error in form.username.errors %} {{ error|escape }} {% endfor %}
{{ form.options.errors }}
{{ form.password }} {% for error in form.password.errors %} {{ error|escape }} {% endfor %}

Get a password reminder

Alternatively create an account before you checkout.
{% endblock content %} {% block onbodyload %} oscar.checkout.gateway.init(); {% endblock %}