Confirm disabling all notifications (#1845)

This commit is contained in:
julia-luna
2020-11-05 18:40:53 +01:00
committed by GitHub
parent d08c811f3a
commit b51108ab22
3 changed files with 18 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
{% extends "pretixcontrol/auth/base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% block title %}{% trans "Disable notifications" %}{% endblock %}
{% block content %}
<form action="" method="post" class="form-signin">
{% csrf_token %}
<div class="text-center">
<p>Please confirm that you no longer want to receive notifications for any of your events.</p>
<p><button type="submit" class="btn btn-primary" value="Disable notifications">Disable notifications</button></p>
</div>
</form>
{% endblock %}