blob: dd32d871a19fe783fcdc048f8b6b03f569775461 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block content %}
<br>
<br>
<form method="get" action="/results">
<button type="submit">Download Results File</button>
</form>
<form method="get" action="/">
<button type="submit">Upload another file</button>
</form>
{% endblock %}
|