2019-04-01 15:03:13 +02:00
|
|
|
= content_for(:page_id, 'auth')
|
|
|
|
|
2019-01-08 14:23:48 +01:00
|
|
|
.auth-form
|
|
|
|
= devise_error_messages!
|
2022-12-20 17:51:36 +01:00
|
|
|
= 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
|
|
|
|
2020-07-27 16:35:05 +02:00
|
|
|
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
|
|
|
|
|
2022-12-20 17:51:36 +01:00
|
|
|
%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
|
2023-05-15 14:54:07 +02:00
|
|
|
%p.fr-text--sm= t('utils.mandatory_champs')
|
2019-12-03 09:37:29 +01:00
|
|
|
|
2022-12-20 17:51:36 +01:00
|
|
|
.fr-fieldset__element= render Dsfr::InputComponent.new(form: f, attribute: :email, input_type: :email_field, opts: { autocomplete: 'email', autofocus: true })
|
2019-11-28 15:34:46 +01:00
|
|
|
|
2022-12-20 17:51:36 +01:00
|
|
|
.fr-fieldset__element
|
2023-02-15 11:33:42 +01:00
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :password, input_type: :password_field, opts: { autocomplete: 'new-password', minlength: PASSWORD_MIN_LENGTH }) do |c|
|
2022-12-20 17:51:36 +01:00
|
|
|
- c.describedby do
|
2023-02-15 11:33:42 +01:00
|
|
|
= render partial: "devise/password_rules", locals: { id: c.describedby_id }
|
2015-11-27 18:25:31 +01:00
|
|
|
|
2023-09-15 17:20:44 +02:00
|
|
|
%ul.fr-btns-group
|
|
|
|
%li= f.submit t('views.shared.account.create'), class: "fr-btn"
|