{% extends 'main/layout.html' %}
{% block title %}Email newsletter — {{ blog_user.username }}{% endblock %}
{% block content %}
<main>
{% if blog_user.blog_title %}
<a href="{% url 'index' %}" class="pages-item-brand">{{ blog_user.blog_title }}</a>
{% endif %}
<h1>Email newsletter</h1>
<p>Receive an email when a new post is published.</p>
<form method="post">
{{ form.as_p }}
{% csrf_token %}
<input type="submit" value="Submit">
</form>
<br>
<p>
Or to stop receiving emails,
<a href="{% url 'notification_unsubscribe' %}">unsubscribe</a>.
</p>
</main>
{% endblock content %}