Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / password / signup_form.html
blob0aca628f701536fbdf15ad793d9e67daaf0c6153
1 <!--
2 A mock signup form. Essentially the same as password_form.html, but includes
3 an additional text field which will cause it to be treated differently.
4 -->
5 <html>
6 <body>
7 <form method="POST" action="done.html" onsubmit="return true;" id="testform">
8 <input type="text" id="other_info" name="other_info">
9 <input type="text" id="username_field" name="username_field">
10 <input type="password" id="password_field" name="password_field">
11 <input type="submit" id="input_submit_button" name="input_submit_button">
12 </form>
14 <button id="submit_button" name="submit_button"
15 onclick="document.getElementById('testform').submit()">
16 Submit!
17 </button>
19 <!--
20 Extremly wide <div> to allow scrolling to be tested.
21 -->
22 <div style="border:1px solid black;background-color:lightblue;height:75px;width:5000px;">
23 </div>
25 </body>
26 </html>