blob: 0aca628f701536fbdf15ad793d9e67daaf0c6153 [file] [log] [blame]
<!--
A mock signup form. Essentially the same as password_form.html, but includes
an additional text field which will cause it to be treated differently.
-->
<html>
<body>
<form method="POST" action="done.html" onsubmit="return true;" id="testform">
<input type="text" id="other_info" name="other_info">
<input type="text" id="username_field" name="username_field">
<input type="password" id="password_field" name="password_field">
<input type="submit" id="input_submit_button" name="input_submit_button">
</form>
<button id="submit_button" name="submit_button"
onclick="document.getElementById('testform').submit()">
Submit!
</button>
<!--
Extremly wide <div> to allow scrolling to be tested.
-->
<div style="border:1px solid black;background-color:lightblue;height:75px;width:5000px;">
</div>
</body>
</html>