mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
21 lines
429 B
HTML
21 lines
429 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">
|
|
<input
|
|
id="submit-btn"
|
|
type="submit"
|
|
class="btn btn-lg btn-primary"
|
|
value="Unsubscribe">
|
|
</form>
|
|
|
|
{% if autosubmit %}
|
|
<script>document.getElementById("form").submit();</script>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|