38 lines
1.4 KiB
Text
38 lines
1.4 KiB
Text
- content_for(:title, 'Confirmez votre adresse email')
|
||
|
||
- content_for :footer do
|
||
= render partial: 'root/footer'
|
||
|
||
.container.devise-container.devise-confirmations
|
||
.one-column-centered
|
||
= devise_error_messages!
|
||
%h1.center Confirmez votre adresse email
|
||
|
||
%img.confirmation-icon{ src: image_url("user/confirmation-email.svg"), alt: "Email envoyé" }
|
||
|
||
%h2.confirmation-preamble
|
||
= succeed '.' do
|
||
Avant d’effectuer votre démarche, nous avons besoin de vérifier votre adresse
|
||
- if resource.email.present?
|
||
%strong= resource.email
|
||
|
||
%p.confirmation-instructions
|
||
Ouvrez votre boîte email, et
|
||
%strong cliquez sur le lien d’activation
|
||
dans le message que vous avez reçu.
|
||
|
||
%hr.confirmation-separator
|
||
|
||
.confirmation-resend
|
||
%p Si vous n’avez pas reçu notre message (avez-vous vérifié les indésirables ?), nous pouvons vous le renvoyer.
|
||
|
||
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { class: 'form' }) do |f|
|
||
= f.label :email, 'Votre email'
|
||
%br
|
||
= f.email_field :email, placeholder: 'Email', class: 'small', autofocus: true
|
||
= f.submit 'Renvoyer un email de confirmation', class: 'button'
|
||
|
||
%p
|
||
Vous pouvez également consulter notre
|
||
= link_to('FAQ', FAQ_EMAIL_NON_RECU_URL, target: '_blank', rel: 'noopener')
|
||
\.
|