demarches-normaliennes/app/views/users/registrations/new.html.haml

26 lines
1.2 KiB
Text
Raw Normal View History

= content_for(:page_id, 'auth')
.auth-form
= devise_error_messages!
= form_for resource, url: user_registration_path, html: { class: "fr-py-5w" } do |f|
2022-08-22 17:55:39 +02:00
%h1.fr-h2= t('views.registrations.new.title', name: APPLICATION_NAME)
2015-11-27 18:25:31 +01:00
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
%fieldset.fr-mb-0.fr-fieldset{ aria: { labelledby: 'create-account-legend' } }
%legend.fr-fieldset__legend#create-account-legend
%h2.fr-h6= I18n.t('views.registrations.new.subtitle')
.fr-fieldset__element
%p.fr-text--sm= t('utils.asterisk_html')
.fr-fieldset__element= render Dsfr::InputComponent.new(form: f, attribute: :email, input_type: :email_field, opts: { autocomplete: 'email', autofocus: true })
.fr-fieldset__element
= render Dsfr::InputComponent.new(form: f, attribute: :password, input_type: :password_field, opts: { autocomplete: 'new-password', minlength: PASSWORD_MIN_LENGTH }) do |c|
- c.describedby do
= render partial: "devise/password_rules", locals: { id: c.describedby_id }
2015-11-27 18:25:31 +01:00
= f.submit t('views.shared.account.create'), class: "fr-btn fr-btn--lg"