2012-11-06 14:30:48 +01:00
|
|
|
= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :class => "login-box" }) do |f|
|
|
|
|
= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo"
|
|
|
|
= devise_error_messages!
|
|
|
|
%div
|
|
|
|
= f.text_field :name, :class => "text top", :placeholder => "Name", :required => true
|
|
|
|
%div
|
|
|
|
= f.text_field :username, :class => "text middle", :placeholder => "Username", :required => true
|
|
|
|
%div
|
|
|
|
= f.email_field :email, :class => "text middle", :placeholder => "Email", :required => true
|
|
|
|
%div
|
|
|
|
= f.password_field :password, :class => "text middle", :placeholder => "Password", :required => true
|
|
|
|
%div
|
|
|
|
= f.password_field :password_confirmation, :class => "text bottom", :placeholder => "Confirm password", :required => true
|
|
|
|
%div
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit "Sign up", :class => "btn-primary btn wide"
|
2012-11-06 14:30:48 +01:00
|
|
|
%br
|
|
|
|
%hr
|
|
|
|
= link_to "Sign in", new_session_path(resource_name)
|
|
|
|
= link_to "Forgot your password?", new_password_path(resource_name), :class => "right"
|