linx-server/templates/index.html

9 lines
219 B
HTML
Raw Normal View History

2015-09-24 01:44:49 -04:00
{% extends "base.html" %}
{% block content %}
<form enctype="multipart/form-data" action="/upload" method="post">
2015-09-24 08:30:16 -04:00
<input type="file" name="file" />
<input type="submit" value="upload" />
2015-09-24 01:44:49 -04:00
</form>
{% endblock %}