14 lines
356 B
HTML
14 lines
356 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Authentication{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>Authentication required</h1>
|
|
|
|
<form method="post">
|
|
<label for="password">Password:</label>
|
|
<input id="password" name="password" type="password" required/>
|
|
|
|
<input type="submit" value="Submit" class="button"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|