| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> | 4 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> |
| 5 <link rel="import" href="/components/paper-button/paper-button.html"> |
| 5 <link rel="import" href="/dashboard/elements/nav-bar.html"> | 6 <link rel="import" href="/dashboard/elements/nav-bar.html"> |
| 6 <link rel="import" href="/dashboard/elements/primary-button.html"> | |
| 7 <style> | 7 <style> |
| 8 a { | 8 a { |
| 9 text-decoration: none; | 9 text-decoration: none; |
| 10 } | 10 } |
| 11 paper-button { |
| 12 background: #4285f4; |
| 13 color: #fff; |
| 14 } |
| 11 </style> | 15 </style> |
| 12 </head> | 16 </head> |
| 13 <body> | 17 <body> |
| 14 <nav-bar></nav-bar> | 18 <nav-bar></nav-bar> |
| 15 | 19 |
| 16 <form action="/bad_bisect" method="POST"> | 20 <form action="/bad_bisect" id="bisect_form" method="POST"> |
| 17 {{xsrf_input|safe}} | 21 {{xsrf_input|safe}} |
| 18 <input type="hidden" name="try_job_id" value="{{try_job_id}}"> | 22 <input type="hidden" name="try_job_id" value="{{try_job_id}}"> |
| 19 <p> | 23 <p> |
| 20 <button class="mini" type="submit" is="primary-button"> | 24 <paper-button onclick="document.getElementById('bisect_form').submit()">Co
nfirm</paper-button> |
| 21 Confirm</button> | |
| 22 that bisect job <a href="#">{{try_job_id}}</a> is incorrect. | 25 that bisect job <a href="#">{{try_job_id}}</a> is incorrect. |
| 23 </p> | 26 </p> |
| 24 </form> | 27 </form> |
| 25 | 28 |
| 26 </body> | 29 </body> |
| 27 </html> | 30 </html> |
| OLD | NEW |