Projet

Général

Profil

0001-registration-simplify-post-registration-message-3805.patch

Thomas Noël, 11 décembre 2019 10:57

Télécharger (2,18 ko)

Voir les différences:

Subject: [PATCH] registration: simplify post-registration message (#38053)

 .../registration/registration_complete.html    | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)
src/authentic2/templates/registration/registration_complete.html
8 8
{% block content %}
9 9
  {% block instructions %}
10 10
  {% blocktrans with email=request.session.registered_email %}
11
    <p>An email was sent to {{ email }}.</p>
11
    <p><strong>An email was sent to {{ email }}.</strong></p>
12 12
  {% endblocktrans %}
13 13
  {% blocktrans %}
14
    <p>Follow the instructions in this email to continue your registration.</p>
14
    <p><strong>Follow the instructions in this email to continue your registration.</strong></p>
15 15
  {% endblocktrans %}
16 16
  {% endblock %}
17 17
  {% block advice %}
18
    {% blocktrans with from_email=from_email %}
19
    <p>To be sure to receive this email we recommend you to add the
20
    {{ from_email }} email address to your addressbook or list of authorised senders
21
    otherwise the message may end up in your spam folder.</p>
18
    {% blocktrans %}
19
    <p>This message may take several minutes to be received. It can also be
20
    considered as a spam: please look in your "junk mail" folder.</p>
22 21
    {% endblocktrans %}
23 22
    {% blocktrans with from_email=from_email %}
24
    <p>If you cannot find the email you should check your spam folder and if
25
    you find it there you should mark it as "non-spam" and add the {{from_email }}
26
    address to your addressbook, this should prevent further emails to be
27
    sorted as spams.</p>
23
    <p>If you still have not received the instructions, add {{from_email}}
24
    address to your address book or authorized sender list, and then repeat the
25
    registration process.</p>
28 26
    {% endblocktrans %}
29 27
  {% endblock %}
30 28
  {% block back %}
31
-