| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <form method="POST" action="done.html" onsubmit="return true;" id="testform"> | 3 <form method="POST" action="done.html" onsubmit="return true;" id="testform"> |
| 4 <input type="text" id="username_field" name="username_field"> | 4 <input type="text" id="username_field" name="username_field"> |
| 5 <input type="password" id="password_field" name="password_field"> | 5 <input type="password" id="password_field" name="password_field"> |
| 6 <input type="submit" id="input_submit_button" name="input_submit_button"> | 6 <input type="submit" id="input_submit_button" name="input_submit_button"> |
| 7 </form> | 7 </form> |
| 8 | 8 |
| 9 <button id="submit_button" name="submit_button" | 9 <button id="submit_button" name="submit_button" |
| 10 onclick="document.getElementById('testform').submit()"> | 10 onclick="document.getElementById('testform').submit()"> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 <input type="password" id="mark_chg_password_field" | 80 <input type="password" id="mark_chg_password_field" |
| 81 name="mark_chg_password_field" autocomplete="current-password"> | 81 name="mark_chg_password_field" autocomplete="current-password"> |
| 82 <input type="password" id="mark_chg_new_password_1" | 82 <input type="password" id="mark_chg_new_password_1" |
| 83 name="mark_chg_new_password_1" autocomplete="new-password"> | 83 name="mark_chg_new_password_1" autocomplete="new-password"> |
| 84 <input type="password" id="mark_chg_new_password_2" | 84 <input type="password" id="mark_chg_new_password_2" |
| 85 name="mark_chg_new_password_2" autocomplete="new-password"> | 85 name="mark_chg_new_password_2" autocomplete="new-password"> |
| 86 <input type="submit" id="mark_chg_submit_button" | 86 <input type="submit" id="mark_chg_submit_button" |
| 87 name="mark_chg_submit_button"> | 87 name="mark_chg_submit_button"> |
| 88 </form> | 88 </form> |
| 89 | 89 |
| 90 |
| 91 <!-- Change password form without the username. --> |
| 92 <form action="done.html" id="chg_testform_wo_username"> |
| 93 <input type="password" id="chg_password_wo_username_field" name="chg_password_
wo_username_field"> |
| 94 <input type="password" id="chg_new_password_wo_username_1" name="chg_new_passw
ord_wo_username_1"> |
| 95 <input type="password" id="chg_new_password_wo_username_2" name="chg_new_passw
ord_wo_username_2"> |
| 96 <input type="submit" id="chg_submit_wo_username_button" name="chg_submit_butto
n"> |
| 97 </form> |
| 90 </body> | 98 </body> |
| 91 </html> | 99 </html> |
| OLD | NEW |