debshots/app/views/users/new.slim
Christoph Haas aad4f0045a Added missing user registration form
This is just from the authlogic coding examples.
We are not using user registration (yet). So this will
likely be deleted again.
2015-07-14 18:52:47 +02:00

5 lines
136 B
Text

h1 Register
= form_for @user do |f|
= render :partial => "form", :object => f, :locals => { :user => @user }
= f.submit "Register"