summaryrefslogtreecommitdiff
path: root/app/views/users/new.html.erb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
commit0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (patch)
tree2fc2082814e513ec5d68b22e7fa07d268df6d788 /app/views/users/new.html.erb
parent8435c0a5ec9889a9da6ede2e24c044d64b279095 (diff)
added match status
Diffstat (limited to 'app/views/users/new.html.erb')
-rw-r--r--app/views/users/new.html.erb33
1 files changed, 3 insertions, 30 deletions
diff --git a/app/views/users/new.html.erb b/app/views/users/new.html.erb
index c23f76d..efc0404 100644
--- a/app/views/users/new.html.erb
+++ b/app/views/users/new.html.erb
@@ -1,32 +1,5 @@
-<h1> Sign Up </h1>
+<h1>New user</h1>
-<%= form_for @user do |f| %>
- <%= render "common/error_messages", :target => @user %>
- <p>
- <%= f.label :name %><br>
- <%= f.text_field :name %>
- </p>
- <p>
- <%= f.label :email %><br>
- <%= f.text_field :email %>
- </p>
- <p>
- <%= f.label :user_name %><br>
- <%= f.text_field :user_name %>
- </p>
- <p>
- <%= f.label :password %><br>
- <%= f.password_field :password %>
- </p>
- <p>
- <%= f.label(:password_confirmation, "Confirm Password") %><br>
- <%= f.password_field :password_confirmation %>
- </p>
- <p>
- <%= f.submit("Be a Leaguer", :class => "signup") %>
- </p>
-<% end %>
-
-
-<%= link_to 'Already Have an Account? Log in', new_session_path, :class => "signin" %>
+<%= render 'form' %>
+<%= link_to 'Back', users_path %>