0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-12 00:01:19 +00:00
healthchecks_healthchecks/templates/accounts/unsubscribe_submit.html
2018-11-09 22:17:45 +02:00

20 lines
422 B
HTML

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