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

{% trans "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 %}

{% trans "Get a password reminder" %}

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