UPDATED 19/3/13:
- Fixed broken links, added new example page.
- Added mention about SQL vulerabilities / PDO.
Bootstrap offers a CSS framework with associated JavaScript. It doesn't deal with server side code, and you need to do this yourself.
I recently did the same as you, in PHP, and I found the following two links useful, well explained, simple to follow and excellent for beginners. Combine the two and you'll have what you need.
BuildInternet.com's basic PHP backend setup, with login, session management etc covers:
- Setting up the project, creating OO database class.
- Building backend, user class, user tools, login/logout, registration.
- Building frontend, forms, form handling, displaying session data.
Simple registration page using Twitter Bootstrap contains:
- A demo page.
- Basic markup for registration page.
- A little custom CSS.
A Note on database security
BuildInternet.com's tutorial above uses standard mysql_* functions. These are vulnerable to attack and are deprecated. Once you understand your login page, you should secure your database functionality using PDO.
Enjoy!