You say the username password list is kept on another page. You should use a database such as mysql to store the username/password list. Create a table with fields userId, email, password, key - where userId is an identity field, and key is a guid.
When a user registers, create a new entry in the database with their email in the email field, password in the password field, and key guid defaulted to null or some initial guid value if you prefer not to allow nullable fields.
When a user logs in successfully (validates email/password against the database table), create a new guid, update the key field for the user with that guid, and drop a cookie for the user with the guid value. On every page on the site that requires being logged in, start by retrieving the user's guid from the cookie and querying the database to make sure an entry exists with that guid value. If there is no entry, expire the cookie and log the user out.
What will happen is that a user's friend who tries to log in will generate a new guid and in effect "steal" the login. The initial user will no longer have a valid guid cookie and will be logged out when they try to access a page.