23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
=image_tag("logo.png", :style => "width:200px;display:block;margin:auto;margin-bottom:2em;")
|
|
|
|
%h1 Se connecter
|
|
|
|
= form_tag forum_auths_path do
|
|
%p
|
|
= label_tag :email, "email :"
|
|
= text_field_tag :email, params[:email]
|
|
%p
|
|
= label_tag :password, "Mot de passe :"
|
|
= password_field_tag :password
|
|
%p
|
|
=check_box_tag :remember_me, 1,params[:remember_me]
|
|
= label_tag :password, "Rester connecter ?"
|
|
|
|
%p= submit_tag "Se connecter", :class => "btn btn-primary"
|
|
|
|
%p
|
|
Pas encore inscrit ?
|
|
=link_to "M'inscrire.", new_forum_forum_user_path
|
|
="-"
|
|
=link_to "Mot de passe perdu ?", new_forum_password_reset_path
|
|
|