40 lines
1.8 KiB
Text
40 lines
1.8 KiB
Text
= content_for(:page_id, 'auth')
|
|
= content_for(:title, t('metas.signin.title'))
|
|
|
|
#session-new.auth-form.sign-in-form
|
|
= form_for resource, url: user_session_path, html: { class: "fr-py-5w" } do |f|
|
|
|
|
%h1.fr-h2= t('views.users.sessions.new.sign_in', application_name: Current.application_name)
|
|
|
|
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
|
|
|
|
%fieldset.fr-mb-0.fr-fieldset{ aria: { labelledby: 'new-account-legend' } }
|
|
%legend.fr-fieldset__legend#new-account-legend
|
|
%h2.fr-h6= I18n.t('views.users.sessions.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: { autocomplete: 'current-password' })
|
|
|
|
%p= link_to t('views.users.sessions.new.reset_password'), new_user_password_path, class: "fr-link"
|
|
|
|
|
|
.fr-fieldset__element
|
|
.auth-options
|
|
.flex-no-shrink
|
|
= f.check_box :remember_me
|
|
= f.label :remember_me, t('views.users.sessions.new.remember_me'), class: 'remember-me'
|
|
|
|
.fr-fieldset__element
|
|
%ul.fr-btns-group
|
|
%li= f.submit t('views.users.sessions.new.connection'), class: "fr-btn fr-btn--lg"
|
|
|
|
- if AgentConnectService.enabled?
|
|
%p.fr-hr-or= t('views.shared.france_connect_login.separator')
|
|
%h2.important-header.mb-1= t('views.users.sessions.new.state_civil_servant')
|
|
%ul.fr-btns-group
|
|
%li= link_to t('views.users.sessions.new.connect_with_agent_connect'), agent_connect_path, class: "fr-btn fr-btn--secondary"
|