Revision control

Copy as Markdown

<html>
<head>
<title> Example Login Page 2 </title>
<meta name="viewport" content="width=device-width">
</head>
<body aria-label="body">
<form method="GET" action="test-fixture/test-password-submit-2.html">
<p>Username: <input id="username" type="text" value="test2@example.com"></p>
<p>Password: <input id="password" type="password" value="verysecret"></p>
<p><input type="submit" value="Login" aria-label="submit"/></p>
</form>
</body>
<script>
document.getElementById("password").value = Math.random().toString();
</script>
</html>