Register page: click submit, page processes, adds user to database
Login, user signs in, clicks submit, page checks database to see if user exists, if exists, then lets them into the login section.
Pretty basic, just takes time to implement anything like this. You can probably find a generic script on the web that will do it fairly easily, your site will need php, mysql installed and running.
Then you have to add a part to each login content area page that checks if the user is logged in, if not, redirect to login page.
Session cookies are the easiest way to handle that, or standard cookies if you don't need them to login everytime.
|