2019-04-01 15:03:13 +02:00
|
|
|
= content_for(:page_id, 'auth')
|
|
|
|
|
2019-01-08 08:20:49 +01:00
|
|
|
.auth-form.sign-in-form
|
2018-10-11 10:24:11 +02:00
|
|
|
|
2021-04-15 17:14:50 +02:00
|
|
|
= form_for resource, url: user_session_path, html: { class: "form" } do |f|
|
2021-03-17 09:43:44 +01:00
|
|
|
%h1.huge-title= t('views.sessions.new.title')
|
2018-10-11 10:24:11 +02:00
|
|
|
|
2020-07-27 16:35:05 +02:00
|
|
|
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
|
|
|
|
|
2021-03-17 09:43:44 +01:00
|
|
|
= f.label :email, t('views.sessions.new.email')
|
2020-03-31 16:58:36 +02:00
|
|
|
= f.text_field :email, type: :email, autocomplete: 'username', autofocus: true
|
2017-06-20 10:09:19 +02:00
|
|
|
|
2021-03-17 09:43:44 +01:00
|
|
|
= f.label :password, t('views.sessions.new.password', min_length: PASSWORD_MIN_LENGTH)
|
2020-03-31 16:58:36 +02:00
|
|
|
= f.password_field :password, autocomplete: 'current-password'
|
2015-11-20 17:50:27 +01:00
|
|
|
|
2019-01-08 08:20:49 +01:00
|
|
|
.auth-options
|
2019-08-16 16:12:00 +02:00
|
|
|
%div
|
2019-11-18 23:12:03 +01:00
|
|
|
= f.check_box :remember_me
|
2021-03-17 09:43:44 +01:00
|
|
|
= f.label :remember_me, t('views.sessions.new.remember_me'), class: 'remember-me'
|
2019-08-16 16:12:00 +02:00
|
|
|
|
|
|
|
.text-right
|
2021-03-17 09:43:44 +01:00
|
|
|
= link_to t('views.sessions.new.reset_password'), new_user_password_path, class: "link"
|
2016-01-29 13:28:32 +01:00
|
|
|
|
2021-03-17 09:43:44 +01:00
|
|
|
= f.submit t('views.sessions.new.connection'), class: "button large primary expand"
|
2017-03-07 10:15:33 +01:00
|
|
|
|
2019-08-23 12:15:54 +02:00
|
|
|
%hr
|
|
|
|
%p.center
|
2021-03-17 09:43:44 +01:00
|
|
|
%span= t('views.sessions.new.are_you_new', app_name: APPLICATION_NAME.gsub("-","‑")).html_safe
|
2019-08-23 12:15:54 +02:00
|
|
|
%br
|
|
|
|
%br
|
2021-03-17 09:43:44 +01:00
|
|
|
= link_to t('views.sessions.new.find_procedure'), COMMENT_TROUVER_MA_DEMARCHE_URL, target: "_blank", class: "button expend secondary"
|