Repository URL to install this package:
|
Version:
2.4.1b3 ▾
|
{% load i18n %}
<!DOCTYPE HTML>
<html>
<head>
<title>{% trans "Password required" %}</title>
</head>
<body>
<h1>{% trans "Password required" %}</h1>
{% block password_required_message %}
<p>{% trans "You need a password to access this page." %}</p>
{% endblock %}
<form action="{{ action_url }}" method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="{% trans 'Continue' %}" class="button" />
</form>
</body>
</html>