From 6dfa705b9755b5e4d5abc4fd697e4ab96caddf01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 26 Jan 2016 17:03:23 +0100 Subject: [PATCH] templates: add explanation words to registration form (#9768) --- templates/registration/registration_form.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 templates/registration/registration_form.html diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html new file mode 100644 index 0000000..c4638f9 --- /dev/null +++ b/templates/registration/registration_form.html @@ -0,0 +1,23 @@ +{% extends "authentic2/base-page.html" %} +{% load i18n %} + +{% block title %} +{% trans "Registration" %} +{% endblock %} + +{% block content %} + +

{% trans "Registration" %}

+ +

+Après validation de votre adresse électronique, il vous sera envoyé un courriel +pour ouvrir votre compte. +

+ +
+ {% csrf_token %} + {{ form.as_p }} + + +
+{% endblock %} -- 2.7.0