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.
28 lines
475 B
HTML
28 lines
475 B
HTML
{% load i18n %}
|
|
|
|
<head>
|
|
<title>
|
|
{% trans "Unsubscribe" %}
|
|
</title>
|
|
</head>
|
|
|
|
<p><b>{% trans "Here you can unsubscribe from the newsletter" %}</b></p>
|
|
|
|
{% if error_message %}
|
|
<p><b>{{ error_message }}</b></p>
|
|
{% endif %}
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" name="post" value="yes">
|
|
<p>
|
|
{% trans "Email address" %}
|
|
<input type="email" name="email">
|
|
</p>
|
|
|
|
<p>
|
|
<input type="submit" value="{% trans "Unsubscribe" %}">
|
|
</p>
|
|
</form>
|