Ich weiß zwar nicht, welche Möglichkeiten Golive anbietet, aber prinzipiell brauchst Du eine Scriptsprache wie JavaScript oder PHP um das ganze abzufragen.
Du hast Deine Seite mit dem Formularfeld:
Code:
<form action="geschuetzt.php" method="post" name="form" id="form">
<input name="pass" type="text">
<input type="submit" name="Submit" value="Abschicken">
</form>
und in der Seite "geschuetzt.php" fragst Du das Passwort ab:
Code:
<?
$passwort = "hallowelt";
if ($pass == $passwort) // oder auch gleich if ($pass == "hallowelt");
{
?>
HIER DEINE HTML-SEITE
<?
}
else
{
echo "ungültiges Passwort!";
}
?>