2023-03-02 17:56:31 -05:00
|
|
|
<!DOCTYPE html>
|
2023-03-07 14:56:01 -05:00
|
|
|
<div class="csv-upload">
|
2023-03-02 17:56:31 -05:00
|
|
|
<h3> If you'd like to upload a CSV. Please do so here:<h3>
|
|
|
|
|
<p></p>
|
2023-03-07 14:56:01 -05:00
|
|
|
<form method="POST"
|
|
|
|
|
action="{{ url_for('csv') }}"
|
|
|
|
|
enctype="multipart/form-data">
|
2023-03-02 17:56:31 -05:00
|
|
|
<p><input type="file" name="file"></p>
|
|
|
|
|
<p><input type="submit" value="Submit CSV"></p>
|
|
|
|
|
</form>
|
2023-03-07 14:56:01 -05:00
|
|
|
</div>
|
2023-03-02 17:56:31 -05:00
|
|
|
|