app-MAIL-temp/app/dashboard/templates/dashboard/billing.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2019-11-14 15:05:20 +01:00
{% extends 'default.html' %}
{% block title %}
Billing
{% endblock %}
{% block head %}
{% endblock %}
{% block default_content %}
2020-02-15 15:22:46 +01:00
<div class="bg-white p-6" style="max-width: 60em; margin: auto">
<h1 class="h3 mb-5"> Billing </h1>
2019-11-14 15:05:20 +01:00
2020-02-15 15:22:46 +01:00
<p>
You are on the <b>{{ sub.plan_name() }}</b> plan. Thank you very much for supporting
2020-02-15 15:22:46 +01:00
SimpleLogin. 🙌
</p>
{% if sub.cancelled %}
2019-11-14 15:05:20 +01:00
<p>
Sad to see you go 😢. Your subscription ends on
{{ sub.next_bill_date.year }}-{{ sub.next_bill_date.month}}-{{ sub.next_bill_date.day }}
({{ sub.next_bill_date | dt }}).
2019-11-14 15:05:20 +01:00
</p>
2020-02-15 15:22:46 +01:00
{% else %}
<div class="mt-3">
Click here to update billing information on Paddle, our payment partner: <br>
<a class="btn btn-success" href="{{ sub.update_url }}"> Update billing information </a>
</div>
2019-11-14 15:05:20 +01:00
2020-02-15 15:22:46 +01:00
<hr>
2019-11-14 15:05:20 +01:00
2020-02-15 15:22:46 +01:00
<div>
Don't want to protect your inbox anymore? <br>
<a class="btn btn-warning" href="{{ sub.cancel_url }}"> Cancel subscription 😔 </a>
</div>
{% endif %}
2019-11-14 15:05:20 +01:00
</div>
{% endblock %}