hobo/hobo/templates/registration/login.html

17 lines
321 B
HTML

{% extends "hobo/base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans "Authentication" %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<ul class="login">
{{ form.as_ul }}
<li><button>{% trans "Log in" %}</button></li>
</ul>
</form>
{% endblock %}