2023-12-19 16:31:57 +01:00
|
|
|
|
- content_for(:title) { "Contactez le support" }
|
|
|
|
|
|
|
|
|
|
.fr-container.fr-my-6w
|
|
|
|
|
%h1.fr-h1 Récupération de dossiers
|
|
|
|
|
|
2023-12-19 13:00:36 +01:00
|
|
|
|
- case params[:error]
|
2023-12-19 16:25:41 +01:00
|
|
|
|
- when 'other_nature', 'not_collectivite_territoriale'
|
2023-12-19 13:00:36 +01:00
|
|
|
|
%p Votre situation nécessite un traitement particulier.
|
|
|
|
|
|
|
|
|
|
= mail_to(CONTACT_EMAIL,
|
|
|
|
|
'Contactez le support',
|
|
|
|
|
subject: 'Récupération de dossiers',
|
|
|
|
|
class: 'fr-btn')
|
2023-12-12 15:25:22 +01:00
|
|
|
|
|
|
|
|
|
- when 'must_use_agent_connect'
|
|
|
|
|
%p Vous devez utiliser le portail AgentConnect pour récupérer vos dossiers.
|
|
|
|
|
|
|
|
|
|
= link_to(agent_connect_login_path, class: "fr-btn fr-connect") do
|
|
|
|
|
%span.fr-connect__login
|
|
|
|
|
= t('signin_with', scope: [:agent_connect, :agent, :index])
|
|
|
|
|
%span.fr-connect__brand AgentConnect
|
|
|
|
|
|
|
|
|
|
%p Vous n'avez pas encore de compte AgentConnect ? Vous pouvez en créer un en utilisant MonComptePro.
|
|
|
|
|
= link_to 'MonComptePro', 'https://moncomptepro.beta.gouv.fr', class: 'fr-btn'
|
2023-12-19 11:18:51 +01:00
|
|
|
|
|
|
|
|
|
- when 'no_dossier'
|
|
|
|
|
%p Lʼadresse email « #{cookies[:retrieve_email]} » que vous avez renseignée nʼa pas de dossier concernant votre organisation.
|
|
|
|
|
|
|
|
|
|
%ul.fr-btns-group.fr-btns-group--inline
|
|
|
|
|
%li
|
|
|
|
|
= link_to 'Essayer avec une autre adresse email', identification_recovery_path, class: 'fr-btn'
|
|
|
|
|
%li
|
|
|
|
|
= mail_to(CONTACT_EMAIL,
|
|
|
|
|
'Contactez le support',
|
|
|
|
|
subject: 'Récupération de dossiers',
|
|
|
|
|
class: 'fr-btn fr-btn--secondary')
|