grandlyon: improve text and css of login page blocks (#52454)

This commit is contained in:
Thomas Jund 2021-04-22 12:50:05 +02:00
parent c074d8ab1f
commit 6772be0042
4 changed files with 33 additions and 0 deletions

View File

@ -66,3 +66,9 @@ div.list-of-forms span.form-number {
div#rub_service h2 {
text-align: left;
}
.pk-button-primary {
@extend %button;
display: inline-block;
background-color: $primary-color;
}

View File

@ -25,3 +25,4 @@ $dashboard-selected-color: $primary-color;
$title-border-bottom: 1px solid #C5C5B6;
$cell-border: 0px solid transparent;
$widget-unique-checkbox-position: left;
$or-separator: true;

View File

@ -0,0 +1,11 @@
{% extends "authentic2/login_password_form.html" %}
{% block login %}
<p>
Je n'ai pas de compte GrandLyon
</p>
{{ block.super }}
{% endblock %}

View File

@ -0,0 +1,15 @@
{% block login %}
<p id="oidc-p-{% firstof provider.slug provider.name|slugify %}">
J'ai un compte GrandLyon (<a>exemple@grandlyon.com</a>), <br>
je me connecte en cliquant ici :
</p>
<p>
<a id="oidc-a-{% firstof provider.slug provider.name|slugify %}"
class="pk-button-primary"
href="{{ login_url }}"
>
Connexion avec un compte <br>
GrandLyon
</a>
</p>
{% endblock %}