This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/uauth/templates/registration/login.html

21 lines
411 B
HTML

{% extends "uauth/base.html" %}
{% load i18n %}
{% block more-user-links %}
{{ block.super }}
<a href="{% url "login" %}">{% trans 'Login' %}</a>
{% endblock %}
{% block content %}
<div class="loginbox">
<h4>{% trans "Login" %}</h4>
<form method="post">
<ul>
{% csrf_token %}
{{ form.as_ul }}
<li><button>{% trans "Login" %}</button></li>
</ul>
</form>
</div>
{% endblock %}