#{
form_for(@user, :method => :post, :action => '/users/create') do |f|
f.input_text 'Username', :username
f.input_password 'Password', :password
f.input_text 'Email', :email
f.submit "Create Account", :class => "submit-btn"
end
}