36 lines
1.4 KiB
Text
36 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)) do |f|
|
||
= render Dsfr::InputComponent.new(form: f, attribute: :email, input_type: :email_field, opts: { autofocus: true })
|
||
= f.submit 'Renvoyer un email de confirmation', class: 'fr-btn'
|
||
|
||
%p.fr-mt-3w
|
||
Vous pouvez également consulter notre
|
||
= link_to(t("links.common.faq.label"), t("links.common.faq.email_non_recu_url"), title: new_tab_suffix(t("links.common.faq.title")), **external_link_attributes)
|
||
\.
|