You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/jdav_web/members/templates/members/echo_password.html

28 lines
629 B
HTML

{% extends "members/base.html" %}
{% load i18n %}
{% load static %}
{% block title %}
{% trans "Echo" %}
{% endblock %}
{% block content %}
<h1>{% trans "Echo" %}</h1>
<p>{% blocktrans %}Thanks for echoing back. Please enter the password, which you can find in the email we sent you.
{% endblocktrans %}</p>
{% if error_message %}
<p><b>{{ error_message }}</b></p>
{% endif %}
<form action="" method="post">
{% csrf_token %}
<input type="password" name="password" required>
<input type="hidden" name="key" value="{{key}}">
<p><input type="submit" value="{% trans "submit" %}"/></p>
</form>
{% endblock %}