June 2002
Intermediate to advanced
400 pages
7h 48m
English
In this section, we'll reimplement the user login page using the browser's built-in login panel and the http basic authorization protocol.
This section is optional for those who want to look at alternative means of providing user login and client-side state storage. Implementing user login via the browser negates the need to have a custom cookie mechanism to store the user login and passwords because most browsers automatically provide this functionality.
As you will soon see, this solution is no more complex than the cookie mechanism of remembering user logins. In fact, because it doesn't have to use cookies, it could be considered the superior solution.
For the first part ...