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

32 lines
1.1 KiB
Text
Raw Normal View History

= content_for(:page_id, 'auth')
.auth-form.sign-in-form
2019-08-16 16:22:19 +02:00
= form_for User.new, url: user_session_path, html: { class: "form" } do |f|
2020-06-03 16:10:11 +02:00
%h1.huge-title Connectez-vous
= f.label :email, "Email (nom@site.com)"
= f.text_field :email, type: :email, autocomplete: 'username', autofocus: true
2017-06-20 10:09:19 +02:00
= f.label :password, "Mot de passe (#{PASSWORD_MIN_LENGTH} caractères minimum)"
= f.password_field :password, autocomplete: 'current-password'
2015-11-20 17:50:27 +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
2019-08-16 16:12:00 +02:00
= f.label :remember_me, "Se souvenir de moi", class: 'remember-me'
.text-right
= link_to "Mot de passe oublié ?", new_user_password_path, class: "link"
= f.submit "Se connecter", class: "button large primary expand"
2017-03-07 10:15:33 +01:00
= render partial: 'shared/france_connect_login', locals: { url: france_connect_particulier_path }
%hr
%p.center
%span Vous êtes nouveau sur demarches‑simplifiees.fr ?
%br
%br
= link_to "Trouvez votre démarche", "https://faq.demarches-simplifiees.fr/article/59-comment-trouver-ma-demarche", target: "_blank", class: "button expend secondary"