Skip to content

Instantly share code, notes, and snippets.

@dagda1
Created September 26, 2011 12:49
Show Gist options
  • Save dagda1/1242152 to your computer and use it in GitHub Desktop.
Save dagda1/1242152 to your computer and use it in GitHub Desktop.
new.html.haml
=form_for @user_session, :id => 'login', :url => user_session_path do |f|
=f.error_messages
%h2
Log In
%fieldset#inputs
=f.label :email
=f.text_field(:email, {:placeholder => "email", :autofocus => "autofocus", :required => "required", :autocomplete => "off"})
=f.label :password
=f.password_field(:password, {:placeholder => "password", :required => "required"})
%fieldset#actions
=f.submit("Log In")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment