SFS/templates/dl_pwd.html

28 lines
826 B
HTML

{% extends "base.html" %}
{% block title %} File access {% endblock %}
{% block titre %} {{filename}} {% endblock %}
{% block contenu %}
<div id="zone-de-contenu">
<div style="width:100%;margin:20px;"> </div>
<fieldset class="fieldset"><legend style="font-size:25px;">Protected</legend>
{% for message in get_flashed_messages() %}
<div class="alert" id="alert{{loop.index}}">
<button type="button" class="close" onclick="javascript:hidealert('alert{{loop.index}}')">&times;</button>
{{ message }}
</div>
{% endfor %}
<form action="" method="POST" accept-charset="utf-8">
Password : <input type="password" name="password" />
<input id="submit" type="submit" value="OK">
</form>
</fieldset>
</div>
{% endblock %}