Created
December 7, 2012 15:07
-
-
Save coderforhire/4233833 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= form_for(resource, :as => resource_name,:url => registration_path(resource_name),:html => {:multipart => true}) do |f| %> | |
<%= devise_error_messages! %> | |
<%= f.text_field :first_name, :class => "xlarge", :placeholder => "First Name" %> | |
<%= f.text_field :last_name, :class => "xlarge", :placeholder => "Last Name" %> | |
</br> | |
<%= f.email_field :email, :class => "xlarge", :placeholder => "Email*" %> | |
<%= f.text_field :phone_number, :class => "xlarge", :placeholder => "Phone Number*" %> | |
</br> | |
<%= f.text_field :street_address, :class => "xlarge", :placeholder => "Street" %> | |
<%= f.text_field :city, :class => "xlarge", :placeholder => "City" %> | |
</br> | |
<%= f.text_field :state, :class => "xlarge", :placeholder => "State" %> | |
<%= f.text_field :zip_code, :class => "xlarge", :placeholder => "Zip Code" %> | |
</br> | |
<%= f.password_field :password, :class => "xlarge", :placeholder => "Password*" %> | |
<%= f.password_field :password_confirmation, :class => "xlarge", :placeholder => "Password, again please.*" %> | |
</br> | |
<%= select :job, :num_of_shirts, ["0-5"] %> | |
</br> | |
<%= f.file_field :job, :art, :class=> "xlarge" %> | |
</br> | |
</br> | |
<%= f.submit "GET QUOTE!", :class => "btn btn-large btn-success" %> | |
<% end %> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment