27 lines
1.4 KiB
Text
27 lines
1.4 KiB
Text
= content_for(:page_id, 'auth')
|
|
|
|
.auth-form
|
|
= devise_error_messages!
|
|
= form_for resource, url: user_registration_path, html: { class: "fr-py-5w" } do |f|
|
|
|
|
%h1.fr-h2= t('views.registrations.new.title', name: Current.application_name)
|
|
|
|
= 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.mandatory_champs')
|
|
|
|
.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: { autofocus: 'true', autocomplete: 'new-password', data: { controller: 'turbo-input', turbo_input_url_value: show_password_complexity_path }, aria: {describedby: 'password_hint'}})
|
|
|
|
#password_complexity
|
|
= render PasswordComplexityComponent.new
|
|
|
|
= f.submit t('views.shared.account.create'), id: 'submit-password', disabled: :disabled, class: "fr-btn fr-btn--lg fr-mt-2w", data: { disable_with: t('views.users.passwords.edit.submit_loading') }
|