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.
This commit is contained in:
Christoph Haas 2015-07-14 18:52:47 +02:00
parent ddeb49c672
commit aad4f0045a

5
app/views/users/new.slim Normal file
View file

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