2021-12-03 17:58:48 +01:00

40 lines
1.2 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<h2>Search Collected Dark Web Pages</h2>
<div style = "height:10px"></div>
<p>On this page you can search for keywords in the dark web pages repository. Type in your search word(s) and press Submit
and wait for the computer to deliver your search results.
<div id='chart' class='chart'></div>
</p>
<!-- Search form-->
<form class="container-fluid" method="post" action="/search" id="search">
<div class="row alert alert-dark bg-dark text-light">
<div class="col-2">
<input type="checkbox" style="margin:1rem;" name="checkbox1" id="darknet" >
<label for="checkbox1">Tor</label>
<input type="checkbox" style="margin:1rem;" name="checkbox2" id="darknet2" >
<label for="checkbox2">I2P</label>
<input type="text" class="form-control form-control-sm" id="field" name="field" value=" ">
</div>
<div class="col-12 py-1">
<button type="submit" name="input" id="input" class="btn btn-light float-right">Submit</button>
</div>
</div>
</form>
<!-- End of forms -->
<!--- View archive search result --->
<pre>
<code class="text-dark">
{{ result}}
</code>
</pre>
{% endblock %}