Skip to content

Commit 0df7ea0

Browse files
committed
removed some stuff
1 parent e95eca6 commit 0df7ea0

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

Diff for: front-end/index.html

+2-19
Original file line numberDiff line numberDiff line change
@@ -74,26 +74,9 @@ <h1>Upload Files</h1>
7474
method="post"
7575
enctype="multipart/form-data">
7676
<label for="file">File</label>
77-
<input type="file" name="file" id="file" multiple accept=".gz" required />
77+
<input type="file" name="file" id="file" multiple required />
7878
<input id="upload-btn" type="submit" value="Upload" />
79-
{% with messages = get_flashed_messages() %}
80-
{% if messages %}
81-
{% for message in messages %}
82-
<p>{{ message }}</p>
83-
{% endfor %}
84-
{% endif %}
85-
{% endwith %}
86-
{% if download %}
87-
<a id="download-link" href="/download">Download file</a>
88-
{% endif %}
8979
</form>
90-
{% if processed_files %}
91-
<ul id="downloaded-files-list">
92-
{% for file in processed_files %}
93-
<li><a href="/download/{{ file }}">{{ file }}</a></li>
94-
{% endfor %}
95-
</ul>
96-
{% endif %}
97-
<script src="/download.js"></script>
80+
9881
</body>
9982
</html>

0 commit comments

Comments
 (0)