| 12345678910111213141516171819202122232425262728 |
- {% extends "layout.html" %}
-
- {% block header %}
- <h2>Checkout / Gateway</h2>
- {% endblock header %}
-
-
- {% block content %}
-
- <dl>
- <dt>
- <a href="">Register</a> or <a href="{% url oscar-customer-login %}">log-in</a>
- </dt>
- <dl>
- <p>Logging in now will give you access to your address book and ensure your
- order is viewable in your order history.</p>
- </dl>
- <dt>
- <a href="{% url oscar-checkout-shipping-address %}">Checkout anonymously</a>
- </dt>
- <dl>
- <p>You can checkout without signing in or registering. You will be given the opportunity to
- register when checkout is complete.</p>
- </dl>
- </ol>
-
- {% endblock content %}
|