{% extends "base.html" %} {% load admins %} {% block title %}Opt-in{% endblock %} {% block heading %}Opt-in{% endblock %} {% block body %} {% if confirmation %}

Opt-in confirmation email sent

An opt-in confirmation mail has been sent to {{ confirmation.email }}, containing a link. Please click on that link to confirm your opt-in.

{% else %} {% if error %}

{{ error }}

{% endif %} {% if form %}

This form allows you to opt-in to automated email from Patchwork. Use this if you have previously opted-out of Patchwork mail, but now want to received notifications from Patchwork.

When you submit it, an email will be sent to your address with a link to click to finalise the opt-in. Patchwork does this to prevent someone opting you in without your consent.

{% csrf_token %} {{ form.email.errors }}
{{ form.email.label_tag }}: {{ form.email }}
{% endif %} {% if error and admins %}

If you are having trouble opting in, please email {% site_admins %}.

{% endif %} {% endif %} {% if user.is_authenticated %}

Return to your user profile.

{% endif %} {% endblock %}