web_AI-5/django/didgeridoo/webshop/templates/registration/login.html

13 lines
301 B
HTML
Raw Normal View History

{% extends 'webshop/base.html' %}
{% block section_title %}Login{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Login</button>
2017-12-29 16:46:21 +01:00
<p><a href="{% url 'registration' %}">Go to registration.</a></p>
</form>
{% endblock %}