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
429 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. <input
  8. id="submit-btn"
  9. type="submit"
  10. class="btn btn-lg btn-primary"
  11. value="Unsubscribe">
  12. </form>
  13. {% if autosubmit %}
  14. <script>document.getElementById("form").submit();</script>
  15. {% endif %}
  16. {% endblock %}