This commit is contained in:
2018-01-24 10:53:17 +02:00
commit 57e6bd5608
10 changed files with 280 additions and 0 deletions

9
code/templates/send.html Normal file
View File

@@ -0,0 +1,9 @@
{% extends "layout.html" %}
{% block body %}
upload to {{ name|safe }}
<form action={{ url_for('upload') }} method=post enctype=multipart/form-data>
<input type=hidden name=name value="{{ name|safe }}" />
<p><input type=file name=file>
<input type=submit value=Upload>
</form>
{% endblock %}