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.
 
 
 
 
 

24 lines
363 B

  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