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