2020-06-29 16:58:58 +02:00
|
|
|
|
- content_for(:title, 'Confirmez votre adresse email')
|
2018-10-02 15:47:32 +02:00
|
|
|
|
|
|
|
|
|
- content_for :footer do
|
|
|
|
|
= render partial: 'root/footer'
|
|
|
|
|
|
2018-11-08 15:02:41 +01:00
|
|
|
|
.container.devise-container.devise-confirmations
|
2018-10-02 15:47:32 +02:00
|
|
|
|
.one-column-centered
|
|
|
|
|
= devise_error_messages!
|
2020-06-29 16:58:58 +02:00
|
|
|
|
%h1.center Confirmez votre adresse email
|
2018-10-02 15:47:32 +02:00
|
|
|
|
|
2020-06-29 17:22:11 +02:00
|
|
|
|
%img.confirmation-icon{ src: image_url("user/confirmation-email.svg"), alt: "Email envoyé" }
|
2018-10-02 15:47:32 +02:00
|
|
|
|
|
2022-09-22 11:02:13 +02:00
|
|
|
|
%h2.confirmation-preamble
|
2018-11-08 15:02:41 +01:00
|
|
|
|
= succeed '.' do
|
|
|
|
|
Avant d’effectuer votre démarche, nous avons besoin de vérifier votre adresse
|
|
|
|
|
- if resource.email.present?
|
|
|
|
|
%strong= resource.email
|
2018-10-02 15:47:32 +02:00
|
|
|
|
|
2018-11-08 15:02:41 +01:00
|
|
|
|
%p.confirmation-instructions
|
|
|
|
|
Ouvrez votre boîte email, et
|
|
|
|
|
%strong cliquez sur le lien d’activation
|
|
|
|
|
dans le message que vous avez reçu.
|
2018-10-02 15:47:32 +02:00
|
|
|
|
|
2018-11-08 15:02:41 +01:00
|
|
|
|
%hr.confirmation-separator
|
|
|
|
|
|
|
|
|
|
.confirmation-resend
|
2020-05-25 10:01:59 +02:00
|
|
|
|
%p Si vous n’avez pas reçu notre message (avez-vous vérifié les indésirables ?), nous pouvons vous le renvoyer.
|
2018-11-08 15:02:41 +01:00
|
|
|
|
|
2023-10-03 15:55:51 +02:00
|
|
|
|
= 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'
|
2020-05-25 10:01:59 +02:00
|
|
|
|
|
2023-10-03 15:55:51 +02:00
|
|
|
|
%p.fr-mt-3w
|
2020-05-25 10:01:59 +02:00
|
|
|
|
Vous pouvez également consulter notre
|
2023-01-09 18:16:04 +01:00
|
|
|
|
= 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)
|
2020-05-25 10:01:59 +02:00
|
|
|
|
\.
|