9 lines
219 B
HTML
9 lines
219 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<form enctype="multipart/form-data" action="/upload" method="post">
|
|
<input type="file" name="file" />
|
|
<input type="submit" value="upload" />
|
|
</form>
|
|
{% endblock %}
|