You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
422 B

{% 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 %}