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