12 lines
298 B
HTML
12 lines
298 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}upload{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post" enctype="multipart/form-data">
|
|
<input type="file" class="u-full-width" name="file">
|
|
<input type="submit" class="button-primary" value="upload">
|
|
</form>
|
|
{% endblock %}
|
|
|