You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suchwow/suchwow/templates/submit.html

12 lines
277 B

{% extends 'base.html' %}
{% block content %}
<title>Upload new File</title>
<h1>Upload new File</h1>
<form method=post enctype=multipart/form-data>
<input type="text" name="title"><br>
<input type=file name=file>
<input type=submit value=Submit>
</form>
{% endblock %}