~linuxgoose/bocpress

ref: 74b8eaa5e0e62bc5f51c755585a7239e21126e49 bocpress/main/templates/main/notification.html -rw-r--r-- 664 bytes
74b8eaa5Jordan Robinson fix button text colour on dark mode 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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 %}