Skip to content

Frontend Routes

a-loeffler edited this page Apr 30, 2021 · 2 revisions

Frontend Routes

User-Facing Routes

/login

Log-In Page

This page displays a log-in form.

  • GET /users/login
  • POST /users/login

/logout

Log-Out Page

This page displays a log-out confirmation.

  • GET /users/logout

/signup

Sign-Up Page

This page displays a sign-up form.

  • GET /users/signup
  • POST /users/signup

/questions

Main Questions Page

This page displays a list of all the active questions.

  • GET /questions/

/questions/ask

New Question Form

This page displays a form to create a new question

  • GET /questions/ask
  • POST /questions/ask/submit

/questions/:id/

Respond

This page displays a specific Question thread and its responses, and includes a form where users can submit a new response to the question.

  • GET /questions/:id/
  • POST /questions/:id/response/submit