{% 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 }} {% include 'partials/form_field.html' with field=form.username %}
{{ form.options.errors }}
{{ form.password }} {% trans "Get a password reminder" %} {% for error in form.password.errors %} {{ error }} {% endfor %}
{% endblock content %} {% block onbodyload %} oscar.checkout.gateway.init(); {% endblock %}