add missing close tag (#21908)

This commit is contained in:
Benjamin Dauvergne 2018-09-26 23:30:48 +02:00
parent 6429b3940c
commit 5f854490c5
3 changed files with 7 additions and 4 deletions

View File

@ -3,7 +3,7 @@
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}">
<div id="fc-button-wrapper">
<div id="fc-button">
<div id="fc-button">
<a href="{{ login_url }}"
title="{% trans 'Log in with FranceConnect' %}"
class="button connexion{% if popup %} js-fc-popup{% endif %}">
@ -11,6 +11,7 @@
<img src="{% static "authentic2_auth_fc/img/FC-connect-button.svg" %}"></img>
</div>
</a>
</div>
</div>
{% include "authentic2_auth_fc/explanation.html" %}
{% if popup %}<script src="{% static 'authentic2_auth_fc/js/fc.js' %}" type="text/javascript"></script>{% endif %}

View File

@ -3,7 +3,7 @@
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}">
<div id="fc-button-wrapper">
<div id="fc-button">
<div id="fc-button">
<a href="{{ registration_url }}"
title="{% trans 'Create your account with FranceConnect' %}"
class="button connexion{% if popup %} js-fc-popup{% endif %}">
@ -23,6 +23,7 @@
<img src="{% static 'authentic2_auth_fc/img/FC-register-button.svg' %}"></img>
</div>
</a>
</div>
</div>
{% include "authentic2_auth_fc/explanation.html" %}
{% if popup %}<script src="{% static 'authentic2_auth_fc/js/fc.js' %}" type="text/javascript"></script>{% endif %}

View File

@ -1,9 +1,9 @@
{% load staticfiles %}
{% load i18n %}
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}"/>
<div id="fc-button-wrapper">
<div id="fc-button">
<div id="fc-button">
<a href="{{ login_url }}"
title="{% trans 'Register with FranceConnect' %}"
class="button connexion{% if popup %} js-fc-popup{% endif %}">
@ -11,6 +11,7 @@
<img src="{% static "authentic2_auth_fc/img/FC-register-button.svg" %}"></img>
</div>
</a>
</div>
</div>
{% include "authentic2_auth_fc/explanation.html" %}
{% if popup %}<script src="{% static 'authentic2_auth_fc/js/fc.js' %}" type="text/javascript"></script>{% endif %}