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

55 lines
1.2 KiB
Text
Raw Normal View History

2015-10-07 18:14:10 +02:00
#form_login
2015-11-20 17:50:27 +01:00
= image_tag('logo-tps.png')
2015-10-07 18:14:10 +02:00
%br
2015-11-20 17:50:27 +01:00
%h2#login_user Connexion
2015-12-03 15:09:22 +01:00
%br
%h3.text-info
S'identifier grâce à
%strong
France Connect
2016-01-11 17:19:25 +01:00
%a.btn.btn-default.btn-lg.btn-primary.btn_fc#btn_fcp{href: '/france_connect/particulier'}
%div{style:'margin-left:35px'}
Particulier
-#.col-md-6.col-lg-6
-# %a.btn.btn-default.btn-lg.btn-danger.btn_fc#btn_fce{href: '/france_connect/entreprise'}
-# %div{style:'margin-left:35px'}
-# Entreprise
%hr
2015-10-07 18:14:10 +02:00
= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
%h4
= f.label :email
.input-group
.input-group-addon
2015-11-25 10:26:55 +01:00
%span.fa.fa-user
2015-10-07 18:14:10 +02:00
= f.email_field :email, class: 'form-control'
%br
%h4
= f.label :password
.input-group
.input-group-addon
2015-11-25 10:26:55 +01:00
%span.fa.fa-asterisk
2015-10-07 18:14:10 +02:00
= f.password_field :password, autocomplete: "off", class: 'form-control'
%br
%br
.actions
= f.submit "Se connecter", class:'btn btn-primary'
%br
= render "users/shared/links"
2015-10-06 18:33:01 +02:00
%div{style:'text-align:center'}
\-
%br
%a{href: '/gestionnaires/sign_in'}
= 'Accompagnateur'
%br
%a{href: '/administrateurs/sign_in'}
= 'Administrateur'
2015-10-06 18:33:01 +02:00
2015-09-23 10:02:01 +02:00