Browse Source

Template for the unsubscribe confirmation form.

pull/211/head
Pēteris Caune 6 years ago
parent
commit
d064112c16
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      templates/accounts/unsubscribe_submit.html

+ 20
- 0
templates/accounts/unsubscribe_submit.html View File

@ -0,0 +1,20 @@
{% extends "base_bare.html" %}
{% block title %}Unsubscribe{% endblock %}
{% block content %}
<p>Please press the button below to unsubscribe:</p>
<br />
<form id="form" method="post">
{% csrf_token %}
<input
id="submit-btn"
type="submit"
class="btn btn-lg btn-primary"
value="Unsubscribe">
</form>
<script>
document.getElementById("form").submit();
</script>
{% endblock %}

Loading…
Cancel
Save