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

168 lines
5.7 KiB
HTML
Raw Normal View History

2019-11-14 15:05:20 +01:00
{% extends 'default.html' %}
{% set active_page = "dashboard" %}
{% block title %}
Pricing
{% endblock %}
{% block head %}
<script src="https://cdn.paddle.com/paddle/paddle.js"></script>
<script>
if (window.Paddle === undefined) {
console.log("cannot load Paddle from CDN");
document.write('<script src="/static/vendor/paddle.js"><\/script>')
}
</script>
<style type="text/css">
html.mvc__a.mvc__lot.mvc__of.mvc__classes.mvc__to.mvc__increase.mvc__the.mvc__odds.mvc__of.mvc__winning.mvc__specificity, html.mvc__a.mvc__lot.mvc__of.mvc__classes.mvc__to.mvc__increase.mvc__the.mvc__odds.mvc__of.mvc__winning.mvc__specificity > body {
position: static;
}
</style>
2019-11-14 15:05:20 +01:00
{% endblock %}
{% block announcement %}
{# TODO: to remove#}
2021-07-25 10:58:41 +02:00
{# <div class="alert alert-danger text-center mb-0" role="alert">#}
{# Our payment provider Paddle is experiencing#}
{# <a href="https://paddle.status.io" target="_blank">server issue <i class="fe fe-external-link"></i></a>#}
{# that can make our checkout page unusable. <br>#}
{# Please retry later and sorry for this issue!#}
{# </div>#}
{% endblock %}
2019-11-14 15:05:20 +01:00
{% block default_content %}
<div class="row">
<div class="col-sm-6 col-lg-6">
<div class="card">
<div class="card-body text-center">
2019-12-30 11:08:11 +01:00
<div class="h3">Premium</div>
<ul class="list-unstyled leading-loose mb-3">
2020-05-27 22:52:45 +02:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2021-07-25 10:58:41 +02:00
Unlimited aliases
</li>
2019-11-14 15:05:20 +01:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2020-04-12 20:15:02 +02:00
Unlimited custom domains
2019-11-21 21:25:27 +01:00
</li>
2020-01-03 11:51:44 +01:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2020-05-27 20:45:29 +02:00
Catch-all (or wildcard) aliases
2020-01-03 11:51:44 +01:00
</li>
2019-11-21 21:25:27 +01:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2020-04-12 20:15:02 +02:00
Up to 50 directories (or usernames)
</li>
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2020-04-12 20:15:02 +02:00
Unlimited mailboxes
2019-11-14 15:05:20 +01:00
</li>
2020-04-03 23:39:27 +02:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
PGP Encryption
</li>
2019-11-14 15:05:20 +01:00
</ul>
2019-12-30 11:08:11 +01:00
2021-07-25 10:58:41 +02:00
<div class="small-text">More information on our <a href="https://simplelogin.io/pricing" target="_blank"
rel="noopener">Pricing
2019-12-30 11:08:11 +01:00
Page <i class="fe fe-external-link"></i>
</a></div>
2019-11-14 15:05:20 +01:00
</div>
</div>
</div>
<div class="col-sm-6 col-lg-6">
{% if manual_sub %}
<div class="alert alert-info">
You currently have a subscription until <b>{{ manual_sub.end_at.format("YYYY-MM-DD") }}</b>
({{ (manual_sub.end_at - now).days }} days left).
<br>
Please note that the time left will <b>not</b> be taken into account in a new subscription.
</div>
<hr>
{% endif %}
2020-01-03 11:51:44 +01:00
<div class="display-6 my-3">
2019-12-07 10:41:51 +01:00
🔐 Secure payments by
<a href="https://paddle.com" target="_blank" rel="noopener">
Paddle <i class="fe fe-external-link"></i>
2019-12-07 10:41:51 +01:00
</a>
2019-11-14 15:05:20 +01:00
</div>
{% set sub = current_user.get_subscription() %}
{% if sub and sub.cancelled %}
<div class="alert alert-primary" role="alert">
You have an active subscription until {{ sub.next_bill_date.strftime("%Y-%m-%d") }}. <br>
Please note that if you re-subscribe now, this will be a completely
new subscription and
your payment method will be charged <b>immediately</b>.
</div>
{% endif %}
{% if coinbase_sub %}
<div class="alert alert-info">
You currently have a Coinbase subscription until <b>{{ coinbase_sub.end_at.format("YYYY-MM-DD") }}</b>
({{ (coinbase_sub.end_at - now).days }} days left).
<br>
Please note that the time left will <b>not</b> be taken into account in a new Paddle subscription.
</div>
{% endif %}
2020-01-03 11:51:44 +01:00
<div class="mb-3">
2020-12-13 17:04:05 +01:00
Paddle supports bank cards
(Mastercard, Visa, American Express, etc) and PayPal.
2020-01-03 11:51:44 +01:00
</div>
2019-11-14 15:05:20 +01:00
2020-01-03 11:51:44 +01:00
<button class="btn btn-primary" onclick="upgrade({{ PADDLE_YEARLY_PRODUCT_ID }})">
2021-04-23 12:08:27 +02:00
Yearly billing
<span class="badge badge-success">Save $18</span>
<br>
<span style="font-size: 18px">
$30/year
</span>
2019-11-14 15:05:20 +01:00
</button>
2020-12-13 17:04:05 +01:00
2021-07-25 10:58:41 +02:00
<button class="btn btn-secondary" onclick="upgrade({{ PADDLE_MONTHLY_PRODUCT_ID }})">
Monthly billing <br>
<b>
$4/month
</b>
</button>
2021-04-23 12:08:27 +02:00
2020-12-19 16:31:16 +01:00
<hr>
<i class="fa fa-bitcoin"></i>
2020-12-19 16:31:16 +01:00
Payment via
<a href="https://commerce.coinbase.com/?lang=en" target="_blank">
Coinbase Commerce<i class="fe fe-external-link"></i>
</a> <br>
Currently Bitcoin, Bitcoin Cash, Dai, Ethereum, Litecoin and USD Coin are supported. <br>
2020-12-19 16:31:16 +01:00
2021-04-23 12:08:27 +02:00
<a class="btn btn-outline-primary" href="{{ url_for('dashboard.coinbase_checkout_route') }}"
2020-12-19 16:31:16 +01:00
target="_blank">
2021-04-23 12:08:27 +02:00
Yearly billing - Crypto <br>
$30/year
<i class="fe fe-external-link"></i>
2020-12-19 16:31:16 +01:00
</a>
2020-12-13 19:14:11 +01:00
2020-12-13 17:04:05 +01:00
<hr>
2021-07-25 10:58:41 +02:00
For other payment options, please send us an email at <a href="mailto:hi@simplelogin.io">hi@simplelogin.io</a>.
<br>
If you have bought a coupon, please go to the <a href="{{ url_for('dashboard.coupon_route') }}">coupon page</a> to
apply the coupon code.
2020-12-13 17:04:05 +01:00
2019-11-14 15:05:20 +01:00
</div>
</div>
<script type="text/javascript">
Paddle.Setup({vendor: {{ PADDLE_VENDOR_ID }}});
function upgrade(productId) {
Paddle.Checkout.open({
product: productId,
2020-08-20 09:44:45 +02:00
success: "{{ success_url }}",
passthrough: "{\"user_id\": {{current_user.id}} }"
2019-11-14 15:05:20 +01:00
});
}
</script>
2020-05-27 20:45:29 +02:00
{% endblock %}