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