Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wagtail-gardentronic / core / templates / wagtailcore / password_required.html
Size: Mime:
{% 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>