Authenticating Users
Get introduced to the concept of authentication.
We'll cover the following...
Need for authentication
A web application usually has:
- A public part
- A part for known users who are logged in
- A part that is only accessible to administrators
Public pages will be accessible by so-called anonymous users. For other pages, like a list of previously created orders or a page where the user can edit their profile, these users will need to ...