<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Buscribe -- Search</title> <link rel="stylesheet" href="style.css"> <script type="application/javascript" src="script.js"></script> </head> <body onload="onSiteLoad()"> <div id="search_tools"> <div id="text_search_line" class="form_line"> <label for="search_text">Search</label> <input type="search" id="search_text" oninput="doSearch()" placeholder="Supports quotes, 'or' and -."> </div> <div id="time_search_line" class="form_line"> <label for="start_time">Start time</label> <input id="start_time" type="datetime-local"> <label for="end_time">End time</label> <input id="end_time" type="datetime-local"> <button id="search_button" onclick="doSearch()" type="button">Search</button> </div> </div> <div id="results"> </div> <div id="help_box"> <hr> <p>Start time and end time specify the time range.</p> <p>Text search supports quotes ("word1 and word2") to search phrases with those words in order. The word "or" works as an <em>or</em> operator. Dash "-" works as a <em>not</em> operator.</p> <hr> </div> </body> </html>