diff --git a/app/views/devise/registrations/new.html.haml b/app/views/devise/registrations/new.html.haml index 8a1afa20..a36e06cf 100644 --- a/app/views/devise/registrations/new.html.haml +++ b/app/views/devise/registrations/new.html.haml @@ -7,7 +7,11 @@ Sign Up .panel-body = semantic_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| - = render partial: 'devise/shared/sign_up_fields', locals: { u: f} + = f.input :username, required: true + = f.input :email + = f.input :name, required: true + = f.input :password + = f.input :password_confirmation %p.text-right = f.action :submit, as: :button, label: 'Sign Up', button_html: {class: 'btn btn-success' }