film2.0/templates/auth.html

14 lines
357 B
HTML
Raw Normal View History

{% extends 'base.html' %}
{% block title %}Secret required{% endblock %}
{% block body %}
<h1>Secret required</h1>
<form method="POST" action="/auth">
<input type="hidden" name="location" value="{{ path }}">
<input type="text" name="pass" />
<input type="submit" />
</form>
<p style="color:red;">{{ error_msg|default('') }}</p>
{% endblock %}