The Identity Class
Thursday, November 25, 2010

In my previous post about creating an authentication class, I made use of another class, called Application_Model_Identity, to store the details of the user, who has logged in. In this post, I intended to look at some of the things that can be done with such a class, drawing on some of the applications that I have developed myself. (more…)

Posted by James at 7:30 pm   0 comments

The Authentication Class
Sunday, November 21, 2010

I prefer to encapsulate the code for logging in and out in a class. In the example I am using for this series of posts, the class is called Application_Model_Login. We have already seen in this post how it is used in the Login Controller. (more…)

Posted by James at 7:07 pm   4 comments

The Login Page: The Login Form
Monday, November 15, 2010

The Login Form is a simple form, consisting of three elements: the username field, the password field and the login button. (more…)

Posted by James at 11:51 pm   0 comments

The Login Page: The login/index view script
Wednesday, November 3, 2010

The previous post discussed the implementation of the Login Controller; in this post, we will look at the implementation of the view script associated with the login/index action. (more…)

Posted by James at 9:00 am   0 comments