forgery/templates/auth.html

15 lines
356 B
HTML
Raw Permalink Normal View History

{% 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 %}