summaryrefslogtreecommitdiff
path: root/users/app/views
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-12-07 12:48:04 +0100
committerAzul <azul@leap.se>2012-12-07 12:48:04 +0100
commit4aff08fe9696d2f6b92f8a8c2bbb2f96a26277e7 (patch)
tree73c4ed1edf3a1be8462f7e6a81475ae4b56616ef /users/app/views
parenta2d343619e752f62cb7e3445803e4491696af391 (diff)
refactor: use seperate form for signup
creating and editing users differ so much now it's not worth reusing the complex user_form_with for the signup.
Diffstat (limited to 'users/app/views')
-rw-r--r--users/app/views/users/_legend_and_submit.html.haml12
-rw-r--r--users/app/views/users/_signup.html.haml2
-rw-r--r--users/app/views/users/new.html.haml10
3 files changed, 12 insertions, 12 deletions
diff --git a/users/app/views/users/_legend_and_submit.html.haml b/users/app/views/users/_legend_and_submit.html.haml
index cc172e9..c20a226 100644
--- a/users/app/views/users/_legend_and_submit.html.haml
+++ b/users/app/views/users/_legend_and_submit.html.haml
@@ -1,10 +1,4 @@
-%legend
- = t(legend)
-= yield
-.pull-right
- - if local_assigns[:with_cancel]
- = f.button :submit, :class => 'btn-primary'
- = link_to t(:cancel), root_url, :class => :btn
- - else
- = f.button :submit
+%legend= t(legend)
+=yield
+.pull-right= f.button :submit
.clearfix
diff --git a/users/app/views/users/_signup.html.haml b/users/app/views/users/_signup.html.haml
deleted file mode 100644
index 51bfaef..0000000
--- a/users/app/views/users/_signup.html.haml
+++ /dev/null
@@ -1,2 +0,0 @@
-= render :partial => 'login_field', :locals => local_assigns
-= render :partial => 'password_fields', :locals => local_assigns
diff --git a/users/app/views/users/new.html.haml b/users/app/views/users/new.html.haml
index 1814847..98cccb0 100644
--- a/users/app/views/users/new.html.haml
+++ b/users/app/views/users/new.html.haml
@@ -1,3 +1,11 @@
.span8.offset2
%h2=t :signup
- = user_form_with 'signup', :legend => :signup_message, :with_cancel => true
+ = user_form do |f|
+ %legend= t(:signup_message)
+ = render :partial => 'login_field', :locals => {:f => f}
+ = render :partial => 'password_fields', :locals => {:f => f}
+ .pull-right
+ = f.button :submit, :class => 'btn-primary'
+ = link_to t(:cancel), root_url, :class => :btn
+ .clearfix
+