Sounds like you will need a separate page for each customer anyway. If so and you have PHP, just make them each a page with this on it (just use a different id for each customer - you can even have their name in the title):
PHP Code:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php
// Define the customer id
$password = "d8a798-001";
if (!isset($_POST['txtPassword']) || $_POST['txtPassword'] != $password) {
?>
<title>Login for Cutomer Name</title>
<h1>Login</h1>
<form name="form" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<p><label for="txtpassword">Customer ID:</label>
<br /><input type="password" title="Enter your ID" name="txtPassword" /></p>
<p><input type="submit" name="Submit" value="Login" /></p>
</form>
<?php
}
else {
?>
The rest of the 'real' head and the body of the page go here
<?php } ?>
</body></html>
Bookmarks