27 lines
1.5 KiB
Text
27 lines
1.5 KiB
Text
= content_for(:page_id, 'auth')
|
|
|
|
.auth-form
|
|
= devise_error_messages!
|
|
= form_for resource, url: user_registration_path, html: { class: "form" } do |f|
|
|
%h1.fr-h2= t('views.registrations.new.title', name: APPLICATION_NAME)
|
|
|
|
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
|
|
|
|
= f.label :email, t('views.registrations.new.email_label'), id: :user_email_label
|
|
= f.text_field :email, type: :email, autocomplete: 'email', autofocus: true, placeholder: t('views.registrations.new.email_placeholder'), 'aria-describedby': :user_email_label
|
|
|
|
.suspect-email.hidden
|
|
.email-suggestion-title
|
|
= t('views.registrations.new.wanna_say')
|
|
%span.email-suggestion-address blabla@gmail.com
|
|
?
|
|
.email-suggestion-answer
|
|
= button_tag type: 'button', class: 'button small', onclick: "DS.acceptEmailSuggestion()" do
|
|
= t('utils.yes')
|
|
= button_tag type: 'button', class: 'button small', onclick: "DS.discardEmailSuggestionBox()" do
|
|
= t('utils.no')
|
|
|
|
= f.label :password, t('views.registrations.new.password_label', min_length: PASSWORD_MIN_LENGTH), id: :user_password_label
|
|
= f.password_field :password, autocomplete: 'new-password', value: @user.password, placeholder: t('views.registrations.new.password_placeholder', min_length: PASSWORD_MIN_LENGTH), 'aria-describedby': :user_password_label
|
|
|
|
= f.submit t('views.shared.account.create'), class: "button large primary expand"
|