Snackbar

Learn how to provide the user with some information about the application using Snackbar.

Login Modal View

Let’s look at the modal view, which is used as a login form. Our REST API already supports managing user sessions using the following routes:

  • /api/login [POST]
  • /api/logout [GET] (login required)
  • /api/ping [GET] (login required)
  • /api/whoami [GET] (login
...