b0b8f30580
Bulma is simple and free full-CSS framework. Unlike Bootstrap, it fits within a single small CSS file. It is also well integrated in Django. https://bulma.io/
14 lines
441 B
HTML
14 lines
441 B
HTML
{% extends "khaganat/centered_dialog.html" %}
|
|
{% load bulma_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "password_reset"|capfirst %}{% endblock %}
|
|
{% block dialog_class %}is-link{% endblock %}
|
|
|
|
{% block dialog %}
|
|
<form method="post" action="{% url 'password_reset' %}">
|
|
{% csrf_token %}
|
|
{{ form|bulma }}
|
|
<button type="submit" class="button is-link">{% trans "reset_my_password"|capfirst %}</button>
|
|
</form>
|
|
{% endblock %}
|