demarches-normaliennes/app/views/users/dossiers/siret.html.haml

20 lines
959 B
Text
Raw Normal View History

- content_for(:title, "Nouveau dossier (#{@dossier.procedure.libelle})")
- if !dossier_submission_is_closed?(@dossier)
= form_for current_user, url: siret_dossier_path(@dossier), html: { class: 'form', method: 'post' } do |f|
%h1 Identifier votre établissement
%p.mb-1 Merci de remplir le numéro de SIRET de votre entreprise, administration ou association pour commencer la démarche.
= f.label :siret, style: "display: none"
= f.text_field :siret, placeholder: "Numéro SIRET à 14 chiffres", required: true
= f.hidden_field :dossier_id, value: @dossier.id
2019-07-25 11:33:29 +02:00
%p.mb-4
Pour trouver votre numéro SIRET, utilisez
%a{ href: 'https://entreprise.data.gouv.fr/', target: '_blank', rel: 'noopener' }
entreprise.data.gouv.fr
ou renseignez-vous auprès de votre service comptable.
= f.submit "Valider", class: "button large primary expand mt-1", data: { disable_with: "Récupération des informations…" }