lingo/lingo/templates/registration/login.html

11 lines
184 B
HTML

{% extends "lingo/base.html" %}
{% load i18n %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button>{% trans 'Log in' %}</button>
</form>
{% endblock %}