Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 891 Bytes

File metadata and controls

27 lines (17 loc) · 891 Bytes

Login Page - JWT Application

User Authentication using JWT and Token-based Authentication

Workflow:

Token-Based Authentication Workflow

  • When a User request to login, the server checks for login informations, if it's good, returns a JsonWebToken and sends it to the User's Client. In this case, I saved into User's Cookie with HttpsOnly enabled.

  • When a User needs an Authorization, the server checks for JWT token in User's Cookie and send response depends on the token itself.

UI:

Login Form

Login Page UI

Register Form

Register Page UI

Error Page

Error Page UI

Login Success Page

Hello Page UI

User Information Page

Me Page UI