A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

users_controller.rb 363 B

1234567891011121314151617181920212223
  1. class UsersController < ApplicationController
  2. def signup
  3. if request.post?
  4. # do user create logic
  5. redirect_to root_url
  6. end
  7. end
  8. def login
  9. if request.post?
  10. # do user login logic
  11. redirect_to root_url
  12. end
  13. end
  14. def logout
  15. if request.post?
  16. # do user logout logic
  17. redirect_to root_url
  18. end
  19. end
  20. end