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.

18 lines
416 B

  1. {% extends "base_bare.html" %}
  2. {% block title %}Unsubscribe{% endblock %}
  3. {% block content %}
  4. <p>Please press the button below to unsubscribe:</p>
  5. <br />
  6. <form id="form" method="post">
  7. {% csrf_token %}
  8. <input
  9. id="submit-btn"
  10. type="submit"
  11. class="btn btn-lg btn-primary"
  12. value="Unsubscribe">
  13. </form>
  14. <script>document.getElementById("form").submit();</script>
  15. {% endblock %}