1 <!DOCTYPE html> 2 <title>Update rebaseline logs</title> 3 <style> 4 html, body { 5 height: 100%; 6 } 7 body, form { 8 display: flex; 9 flex-direction: column; 10 } 11 form, textarea { 12 flex: 1; 13 } 14 </style> 15 16 <h1>Update logs</h1> 17 <p>This page is for manually testing the log server.</p> 18 <form accept="text/html" action="{{ update_log_url }}" enctype="multipart/form-data" method="post"> 19 <div> 20 <label><input name="{{ new_entry_param }}" type="checkbox">Start a new log entry</label> 21 <label><input name="{{ no_needs_rebaseline_param }}" type="checkbox">No tests need rebaseline</label> 22 <input class=button type="submit" value="Upload"> 23 </div> 24 <textarea name="{{ log_param }}" placeholder="Some logging data..."/></textarea> 25 </form> 26