<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!-- Password test form where autocomplete is off for the password field. -->
<html>
<head>
<title>Password Test Form</title>
</head>
<body>
<form method="POST" action="done.html" id="loginform">
<input type="text" id="username" autocomplete="off">
<input type="password" id="password" autocomplete="off">
<input type="submit" id="submit">
</form>
</body>
</html>