Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html><html><head><meta charset="utf-8"></head><body>
<!-- Any copyright is dedicated to the Public Domain.
<!-- Simplest form with username and password fields. -->
<form id="form-basic">
<input id="u" name="u" value="user" autocomplete="username" />
<input id="p" name="p" type="password" autocomplete="current-password" />
<input type="hidden" name="step" value="2" />
<input id="submit" type="submit" />
</form>
<script type="text/javascript">
if (!location.search.includes("step=2")) {
// Provide a password "later" for the password manager to save.
document.getElementById("p").value = "fake-password";
} else {
document.querySelector("form").hidden = true;
}
</script>
</body></html>