7 lines
200 B
HTML
7 lines
200 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<form action="/{{ config["directory"] }}" method="post">
|
|
<input type="password" name="password">
|
|
<input type="submit">
|
|
</form>
|
|
{% endblock %}
|