upload template

This commit is contained in:
2021-10-20 20:12:24 -06:00
parent 7700bcb49c
commit c48dc65f3c
+14
View File
@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}Upload data{% endblock %}
{% block content %}
<h1>Upload data</h1>
<form method="post" enctype="multipart/form-data">
<input type="radio" id="dsw" name="recordtype" value="dsw">
<label for="dsw">DSW</label>
<input type="radio" id="chargestatement" name="recordtype" value="chargestatement">
<label for="chargestatement">Charge Statement</label>
<label for="file">Choose File</label>
<input type="file" id="file" name="file" accept=".xls,.xlsx">
<input type="submit" value="Upload">
</form>
{% endblock %}