views: cleanup link_sent HTML and CSS
This prepares for re-using the CSS in the reset_link_sent page.
This commit is contained in:
parent
b973f60379
commit
fb55c76829
2 changed files with 40 additions and 28 deletions
|
@ -7,24 +7,36 @@
|
|||
text-align: center;
|
||||
max-width: 600px;
|
||||
|
||||
b {
|
||||
section {
|
||||
text-align: left;
|
||||
margin: 3 * $default-padding auto;
|
||||
}
|
||||
|
||||
p,
|
||||
ol {
|
||||
margin-top: $default-padding;
|
||||
margin-bottom: $default-padding;
|
||||
}
|
||||
|
||||
.link-sent-info {
|
||||
color: #000000;
|
||||
background-color: $yellow;
|
||||
padding: 0 $default-padding;
|
||||
border: 1px solid transparent; // prevent margin collapse of first paragraph
|
||||
}
|
||||
|
||||
.link-sent-help {
|
||||
border-top: 1px solid $grey;
|
||||
padding-top: $default-padding;
|
||||
margin-bottom: $default-padding;
|
||||
}
|
||||
|
||||
.link-sent-help-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: left;
|
||||
margin: 6 * $default-spacer auto;
|
||||
}
|
||||
|
||||
p.mail {
|
||||
color: #000000;
|
||||
background-color: $yellow;
|
||||
padding: $default-padding;
|
||||
}
|
||||
|
||||
p.help {
|
||||
border-top: 1px solid $grey;
|
||||
padding-top: 6 * $default-spacer;
|
||||
margin-bottom: 2 * $default-spacer;
|
||||
.link-sent-help-list {
|
||||
list-style-position: outside;
|
||||
padding-left: $default-padding;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,16 +7,16 @@
|
|||
= image_tag('user/confirmation-email.svg')
|
||||
%h1 Encore une petite étape :)
|
||||
|
||||
%p.mail
|
||||
Ouvrez votre boite email <b>#{@email}</b> puis cliquez sur le lien d'activation du message <b>Connexion sécurisée à #{APPLICATION_NAME}</b>.
|
||||
%br
|
||||
%br
|
||||
<b>Attention</b>, ce message peut mettre jusqu'à <b>15 minutes</b> pour arriver.
|
||||
%section.link-sent-info
|
||||
%p
|
||||
Ouvrez votre boite email <strong>#{@email}</strong> puis cliquez sur le lien d’activation du message <strong>Connexion sécurisée à #{APPLICATION_NAME}</strong>.
|
||||
%p
|
||||
<strong>Attention</strong>, ce message peut mettre jusqu’à <strong>15 minutes</strong> pour arriver.
|
||||
|
||||
%p.help
|
||||
Si vous voyez cette page trop souvent, consultez notre aide : #{link_to FAQ_CONFIRMER_COMPTE_CHAQUE_CONNEXION_URL, FAQ_CONFIRMER_COMPTE_CHAQUE_CONNEXION_URL, target: '_blank', rel: 'noopener' }
|
||||
%br
|
||||
%br
|
||||
En cas de difficultés, nous restons joignables
|
||||
= succeed '.' do
|
||||
= link_to("via ce formulaire", contact_admin_url)
|
||||
%section.link-sent-help
|
||||
%p
|
||||
Si vous voyez cette page trop souvent, consultez notre aide : #{link_to FAQ_CONFIRMER_COMPTE_CHAQUE_CONNEXION_URL, FAQ_CONFIRMER_COMPTE_CHAQUE_CONNEXION_URL, target: '_blank', rel: 'noopener' }
|
||||
%p
|
||||
En cas de difficultés, nous restons joignables
|
||||
= succeed '.' do
|
||||
= link_to("via ce formulaire", contact_admin_url)
|
||||
|
|
Loading…
Reference in a new issue