Sprankelprachtig aan/afmeldsysteem

routes.rb 469B

12345678910111213
  1. Rails.application.routes.draw do
  2. get 'login', to: 'authentication#login_form'
  3. post 'login', to: 'authentication#login'
  4. get 'register', to: 'authentication#create_password_form'
  5. post 'register', to: 'authentication#create_password'
  6. get 'forgot', to: 'authentication#forgotten_password_form'
  7. post 'forgot', to: 'authentication#forgotten_password'
  8. # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
  9. end