khaganat-web/neluser/templates/neluser/login.html
2020-02-28 19:06:37 +01:00

17 lines
693 B
HTML

{% extends "khaganat/centered_dialog.html" %}
{% load i18n %}
{% block title %}{% trans "login"|capfirst %}{% endblock %}
{% block dialog_class %}is-link{% endblock %}
{% block dialog %}
<form method="post" action="{% url 'login' %}">
{% csrf_token %}
{{ form.as_p }}
<input type="hidden" name="next" value="{{ request.GET.next }}" />
<button type="submit" class="button is-link">{% trans "login"|capfirst %}</button>
<a class="button is-light" href="{% url "password_reset" %}" role="button">{% trans "forgotten_password"|capfirst %}</a>
<a class="button is-light" href="{% url "register" %}" role="button">{% trans "register"|capfirst %}</a>
</form>
{% endblock %}