Sprankelprachtig aan/afmeldsysteem

authentication_controller.rb 544B

1234567891011121314151617181920212223242526272829
  1. class AuthenticationController < ApplicationController
  2. def login_form
  3. render layout: 'void'
  4. end
  5. def login
  6. flash[:danger] = "Not yet implemented."
  7. redirect_to action: 'login_form'
  8. end
  9. def create_password_form
  10. render layout: 'void'
  11. end
  12. def create_password
  13. flash[:danger] = "Not yet implemented."
  14. redirect_to action: 'login'
  15. end
  16. def forgotten_password_form
  17. render layout: 'void'
  18. end
  19. def forgotten_password
  20. flash[:danger] = "Not yet implemented."
  21. redirect_to action: 'login'
  22. end
  23. end