Started the CSV Upload functionality

This commit is contained in:
Norm Rasmussen
2023-03-02 17:56:31 -05:00
parent b3a44ce929
commit 074819ce8f
4 changed files with 91 additions and 54 deletions

14
app/templates/csv.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
{% include 'logo.html' %}
{% extends 'head.html' %}
{% block content %}
<h3> If you'd like to upload a CSV. Please do so here:<h3>
<p></p>
<form method="POST" action="" enctype="multipar/form-data">
<p><input type="file" name="file"></p>
<p><input type="submit" value="Submit CSV"></p>
</form>
{% endblock %}