This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-auth-fc/src/authentic2_auth_fc/templates/authentic2_auth_fc/login_registration.html

29 lines
1014 B
HTML

{% load staticfiles %}
{% load i18n %}
<link rel="stylesheet" type="text/css" href="{% static 'authentic2_auth_fc/css/fc.css' %}">
<div id="fc-button-wrapper">
<div id="fc-button">
<a href="{{ registration_url }}"
title="{% trans 'Create your account with FranceConnect' %}"
class="button connexion{% if popup %} js-fc-popup{% endif %}">
<div>
{% trans "Create your account with FranceConnect" %}
<br/>
<br/>
<span class="certified">
{{ fc_user_info.given_name }} {{ fc_user_info.family_name }}
{% if fc_user_info.email %}
<br/>
{{ fc_user_info.email }}
{% endif %}
</span>
<br/>
<br/>
<img src="{% static 'authentic2_auth_fc/img/FC-register-button.svg' %}"></img>
</div>
</a>
</div>
{% include "authentic2_auth_fc/explanation.html" %}
{% if popup %}<script src="{% static 'authentic2_auth_fc/js/fc.js' %}" type="text/javascript"></script>{% endif %}