Source code

Revision control

Copy as Markdown

Other Tools

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