<html>
<head>
<body>
<!--
The message you want to show when you visitor enters a password. This message will only be displayed if they enter a password, and won't be displayed when they first see the page.
-->
<?php if(!empty($form_password){ ?>
<h1><?php print $message; ?></h1>
<?php } ?>
<!--
The form, to be place where you want your visitor to enter the password
-->
<form action="" method="post">
<input type="password" name="password" />
<input type="submit" value="Enter" />
</form>
</body>
</html>
<head>
<body>
<!--
The message you want to show when you visitor enters a password. This message will only be displayed if they enter a password, and won't be displayed when they first see the page.
-->
<?php if(!empty($form_password){ ?>
<h1><?php print $message; ?></h1>
<?php } ?>
<!--
The form, to be place where you want your visitor to enter the password
-->
<form action="" method="post">
<input type="password" name="password" />
<input type="submit" value="Enter" />
</form>
</body>
</html>