{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Checkout gateway" %} | {{ block.super }} {% endblock %} {% block checkout_nav %} {% include 'senex_shop/checkout/progress.html' with step=0 %} {% endblock %} {% block checkout_title %}{% trans "Who are you?" %}{% endblock %} {% block content %}

Sign In

{% csrf_token %} {{ form.non_field_errors }}

1. What is your email address?

{% include "senex_shop/partials/form_field.html" with field=form.username %}

2. Do you have an account?

{{ form.options.0 }}
{{ form.options.errors }}
{{ form.options.2 }}
{{ form.password }} {% trans "Get a password reminder" %} {% for error in form.password.errors %} {{ error }} {% endfor %}
{{ form.options.1 }}
{% endblock content %} {% block onbodyload %} {{ block.super }} oscar.checkout.gateway.init(); {% endblock %}