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.
17 lines
324 B
17 lines
324 B
2 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}Markdown Upload{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<title>Upload</title>
|
||
|
<h1>Upload new File</h1>
|
||
|
<form method=post enctype=multipart/form-data>
|
||
|
<input type=file name=file>
|
||
|
<input type=submit value=Upload>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
{% endblock %}
|