dragon_fire/www/templates/upload.html

20 lines
441 B
HTML
Raw Normal View History

{% extends "root.html" %}
{% block second_title %}
<h2> UPLOAD CONTENT </h2>
{% endblock %}
{%block main_content%}
<article>
2023-12-14 11:47:33 +01:00
<form method="post" enctype="multipart/form-data" action="/api/admin/upload">
<input type="text" id="post_path" name="post_path"/>
2023-12-14 11:47:33 +01:00
<input type="password" id="api_key" name="api_key"/>
<input type="file" id="post_data" name="post_data"/>
<button>Submit</button>
</form>
</article>
{%endblock%}