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

13 lines
345 B
HTML
Raw Normal View History

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