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

28 lines
1.5 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: "form" } do |f|
2021-08-20 10:44:58 +02:00
%h1= 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 }
2021-08-20 10:44:58 +02:00
= 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
2019-12-03 10:04:54 +01:00
.email-suggestion-title
2021-08-20 10:44:58 +02:00
= t('views.registrations.new.wanna_say')
2019-12-03 10:04:54 +01:00
%span.email-suggestion-address blabla@gmail.com
 ?
.email-suggestion-answer
2019-12-03 12:27:39 +01:00
= button_tag type: 'button', class: 'button small', onclick: "DS.acceptEmailSuggestion()" do
= t('utils.yes')
2019-12-03 12:27:39 +01:00
= button_tag type: 'button', class: 'button small', onclick: "DS.discardEmailSuggestionBox()" do
= t('utils.no')
2021-08-20 10:44:58 +02:00
= 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
2015-11-27 18:25:31 +01:00
2021-08-20 10:44:58 +02:00
= f.submit t('views.shared.account.create'), class: "button large primary expand"