Projet

Général

Profil

0001-templates-add-explanation-words-to-registration-form.patch

Frédéric Péters, 26 janvier 2016 17:04

Télécharger (1,12 ko)

Voir les différences:

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
templates/registration/registration_form.html
1
{% extends "authentic2/base-page.html" %}
2
{% load i18n %}
3

  
4
{% block title %}
5
{% trans "Registration" %}
6
{% endblock %}
7

  
8
{% block content %}
9

  
10
<h2>{% trans "Registration" %}</h2>
11

  
12
<p>
13
Après validation de votre adresse électronique, il vous sera envoyé un courriel
14
pour ouvrir votre compte.
15
</p>
16

  
17
<form method="post">
18
  {% csrf_token %}
19
  {{ form.as_p }}
20

  
21
  <input type="submit" value="{% trans 'Submit' %}" />
22
</form>
23
{% endblock %}
0
-