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/
10 lines
352 B
HTML
10 lines
352 B
HTML
{% extends "khaganat/centered_dialog.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "password_reset"|capfirst %}{% endblock %}
|
|
{% block dialog_class %}is-link{% endblock %}
|
|
|
|
{% block dialog %}
|
|
{% trans "password_reset_success_email" %}
|
|
<a class="button is-link" href="{% url "index" %}" role="button">{% trans "Go back home" %}</a>
|
|
{% endblock %}
|