<<
mypassword="NoMonkies"
protected_page="csv_edit.html"
>>
<html>
<title>Staff Login</title>
<<
IF displaymessage <> "ERROR" DO
DISPLAY displaymessage + "<br>" /DISPLAY
displaymessage = "ERROR"
/IF
>>
<form method=post action=checkpassword>
Password <input type=password name=inputpassword value="" size=20>
<input type=submit value="Enter">
</form>
</html>
<<OVERLAY checkpassword
IF inputpassword <> mypassword DO
displaymessage = "Incorrect Password"
GOTO "login.html"
ELSE
GOTO protected_page
/IF
>>