Sprankelprachtig aan/afmeldsysteem

authentication_controller.rb 216B

1234567891011121314
  1. class AuthenticationController < ApplicationController
  2. def login
  3. render layout: 'void'
  4. end
  5. def create_password
  6. render layout: 'void'
  7. end
  8. def forgotten_password
  9. render layout: 'void'
  10. end
  11. end