Rajoute une page pour créer plus facilement des comptes avec mdp

This commit is contained in:
Tom Hubrecht 2021-04-26 17:54:07 +02:00
parent c73f8a5943
commit c97f57912b
11 changed files with 108 additions and 19 deletions

View file

@ -0,0 +1,31 @@
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1 class="title">{% trans "Créer un compte avec mot de passe" %}</h1>
<hr>
<div class="columns is-centered">
<div class="column is-two-thirds">
<form action="" method="post">
{% csrf_token %}
{% include "forms/form.html" with errors=True %}
<div class="field is-grouped is-centered">
<div class="control is-expanded">
<button class="button is-fullwidth is-outlined is-primary is-light">
<span class="icon">
<i class="fas fa-check"></i>
</span>
<span>{% trans "Enregistrer" %}</span>
</button>
</div>
</div>
</form>
</div>
</div>
{% endblock %}