2025-02-01 19:42:25 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Authentication{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1>Authentication required</h1>
|
|
|
|
|
|
|
|
<form method="post">
|
2025-02-07 16:59:23 +01:00
|
|
|
<label for="password">Password:</label>
|
|
|
|
<input id="password" name="password" type="password" required/>
|
2025-02-01 19:42:25 +01:00
|
|
|
|
|
|
|
<input type="submit" value="Submit" class="button"/>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock content %}
|