Devi semplicemente utilizzare questo codice per creare la pagina dove l'utente potrà effettuare l'accesso:
Codice HTML:
<html>
<head>
<script LANGUAGE="JavaScript" type="text/javascript">
function check() {
if ((document.pswd.pswd.value == null) || (document.pswd.pswd.value == ''))
alert('Password Errata.');
else this.location.href = document.pswd.pswd.value + name + ".html";
}
</script>
</head>
<body>
<form name="pswd">
<input type="password" name="pswd" size="18" maxlength="36">
<input type="button" value="Ok" onClick="check()">
</form>
</body>
</html>
Poi, vuoi che i tuoi utenti possano accedere con la password "ciao"?
Devi creare, nella stessa cartella dello script sopra, un file chiamato "ciao.html".
Non c'è da modificare nient' altro.
Ciao!