khaganat-web/neluser/templates/neluser/register.html
Rodolphe Breard b0b8f30580 Migrate to Bulma
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/
2018-06-03 22:16:40 +02:00

15 lines
471 B
HTML

{% extends "khaganat/centered_dialog.html" %}
{% load bulma_tags %}
{% load i18n %}
{% block title %}{% trans "register"|capfirst %}{% endblock %}
{% block dialog_class %}is-link{% endblock %}
{% block dialog_size %}is-two-thirds{% endblock %}
{% block dialog %}
<form method="post" action="{% url 'register' %}">
{% csrf_token %}
{{ form|bulma }}
<button type="submit" class="button is-link">{% trans "register"|capfirst %}</button>
</form>
{% endblock %}