ProfouzorsLinx/templates/access.html

12 lines
347 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
2020-03-01 01:47:28 +01:00
<div id="main">
<form action="{{ unlockpath }}" method="POST" enctype="multipart/form-data">
{{ filename }} is protected with password <br />
2020-03-01 01:47:28 +01:00
<input name="access_key" type="password" />
<input id="submitbtn" type="submit" value="Unlock">
</form>
</div>
{% endblock %}