Use Django Crispy forms

This commit is contained in:
Alexandre Iooss 2021-10-08 11:21:05 +02:00
parent 3e64f02dea
commit b9013c4eb3
7 changed files with 33 additions and 21 deletions

View file

@ -1,9 +1,20 @@
{% extends "base.html" %}
{% comment %}
SPDX-License-Identifier: GPL-2.0-or-later
{% endcomment %}
{% load i18n crispy_forms_tags %}
{% block title %}{% trans "Sign up" %}{% endblock %}
{% block content %}
<h1>Création d'utilisateur</h1>
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<br>
<input type="submit" value="Envoyer">
</form>
<div class="card bg-light">
<h3 class="card-header text-center">
{% trans "Sign up" %}
</h3>
<div class="card-body">
<form method="post">{% csrf_token %}
{{ form|crispy }}
<input type="submit" value="Envoyer" class="btn btn-primary mt-4">
</form>
</div>
</div>
{% endblock %}