Projet

Général

Profil

0001-auth_fc-move-explanation-link-below-the-login-button.patch

Paul Marillonnet, 04 octobre 2022 15:34

Télécharger (1,75 ko)

Voir les différences:

Subject: [PATCH 1/4] auth_fc: move explanation link below the login button
 (#69850)

 .../templates/authentic2_auth_fc/explanation.html              | 3 ---
 src/authentic2_auth_fc/templates/authentic2_auth_fc/login.html | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)
src/authentic2_auth_fc/templates/authentic2_auth_fc/explanation.html
1 1
{% load i18n %}
2 2
{% block fc-explanation %}
3 3
  <div id="fc-explanation-text">
4
    <p>
5
      <a href="{{ about_url }}" target="_blank" rel="noopener" title="{% trans "opens in new window" %}">{% trans "What is FranceConnect?" %}</a>
6
    </p>
7 4
    <p>{% blocktrans trimmed %}
8 5
      FranceConnect is the solution proposed by the French state to secure and
9 6
      streamline logging in to online services.
src/authentic2_auth_fc/templates/authentic2_auth_fc/login.html
11 11
      </a>
12 12
    </div>
13 13
  </div>
14
  <div id="fc-explanation-link">
15
    <a href="{{ about_url }}" target="_blank" rel="noopener" title="{% trans "opens in new window" %}">{% trans "What is FranceConnect?" %}</a>
16
  </div>
14 17
{% endblock %}
15
-