19 lines
421 B
HTML
19 lines
421 B
HTML
|
|
|
|
{% extends "root.html" %}
|
|
|
|
{% block second_title %}
|
|
<h2> UPLOAD CONTENT </h2>
|
|
{% endblock %}
|
|
|
|
{%block main_content%}
|
|
<article>
|
|
<form method="post" enctype="multipart/form-data" action="/api/upload">
|
|
<input type="text" id="path" name="path"/>
|
|
<input type="password" id="ACCESS_KEY" name="ACCESS_KEY"/>
|
|
<input type="file" id="file" name="file"/>
|
|
|
|
<button>Submit</button>
|
|
</form>
|
|
</article>
|
|
{%endblock%}
|