LOGIN BY TOKEN
Login application is a typical operation on any web; this project uses the standard JWT to authenticate users in two ways; the first is an everyday use case with user email and password; the second method uses a Token Jwt to avoid the user’s email and user’s password in authentication process; Project was developed in Angular 12; the backend was developed in Java with the Spring Boot framework; if you want to check the backend project, you could do in the last Article . PREREQUISITES • Angular : This is the framework of JavaScript; The project uses v12 of it. • Angular CLI : This is the administration Api for angular capabilities; The project uses version 12.2.16. • Docker : Project to deploy app in containers (optional*). USE CASES The app works with three use cases. 1. Register User : the user has to register in the app before authenticating in the app. 2. Login by email and password : the user must use your email and password to access the app. 3. Logi...