summaryrefslogtreecommitdiff
path: root/users/app/views/users/new.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/views/users/new.html.haml')
-rw-r--r--users/app/views/users/new.html.haml10
1 files changed, 9 insertions, 1 deletions
diff --git a/users/app/views/users/new.html.haml b/users/app/views/users/new.html.haml
index c1c4208..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
- = render 'form'
+ = 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
+