simple-login/app/dashboard/templates/dashboard/pricing.html

101 lines
3.2 KiB
HTML
Raw Normal View History

2019-11-14 14:05:20 +00: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>
2019-11-14 14:05:20 +00:00
{% endblock %}
{% 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 10:08:11 +00:00
<div class="h3">Premium</div>
<ul class="list-unstyled leading-loose mb-3">
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i> Unlimited Alias</li>
2019-11-14 14:05:20 +00:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2019-12-30 10:08:11 +00:00
Custom Domain
2019-11-21 20:25:27 +00:00
</li>
2020-01-03 10:51:44 +00:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
Catch-all (or wildcard) alias
</li>
2019-11-21 20:25:27 +00:00
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
2019-12-30 10:08:11 +00:00
Directory (or Username)
</li>
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
Multiple Mailboxes
2019-11-14 14:05:20 +00:00
</li>
</ul>
2019-12-30 10:08:11 +00:00
<div class="small-text">More info on our <a href="https://simplelogin.io/pricing" target="_blank">Pricing
Page <i class="fe fe-external-link"></i>
</a></div>
2019-11-14 14:05:20 +00:00
</div>
</div>
</div>
<div class="col-sm-6 col-lg-6">
2020-01-03 10:51:44 +00:00
<div class="display-6 my-3">
2019-12-07 09:41:51 +00:00
🔐 Secure payments by
2020-01-03 10:51:44 +00:00
<a href="https://paddle.com" target="_blank">Paddle<i class="fe fe-external-link"></i></a></li>
2019-12-07 09:41:51 +00:00
</a>
2019-11-14 14:05:20 +00:00
</div>
{% if current_user.is_cancel() %}
<div class="alert alert-primary" role="alert">
You have an active subscription until {{current_user.next_bill_date()}}. <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 %}
2020-01-03 10:51:44 +00:00
<div class="mb-3">
Paddle supported payment methods include bank cards (Mastercard, Visa, American Express, etc) or PayPal. <br>
Send us an email at <a href="mailto:hi@simplelogin.io">hi@simplelogin.io</a> if you need other payment options
(e.g. IBAN transfer).
2020-01-03 10:51:44 +00:00
</div>
2019-11-14 14:05:20 +00:00
2020-01-03 10:51:44 +00:00
<button class="btn btn-success" onclick="upgrade({{ PADDLE_MONTHLY_PRODUCT_ID }})">
2019-11-14 14:05:20 +00:00
Monthly <br>
$2.99/month
</button>
2020-01-03 10:51:44 +00:00
<button class="btn btn-primary" onclick="upgrade({{ PADDLE_YEARLY_PRODUCT_ID }})">
2019-11-14 14:05:20 +00:00
Yearly <br>
$29.99/year
</button>
2020-01-01 19:04:39 +00:00
<hr class="my-6">
If you have a lifetime licence, please go to this page to apply your licence code.
<a href="{{ url_for('dashboard.lifetime_licence') }}">Lifetime Licence</a>
2019-11-14 14:05:20 +00:00
</div>
</div>
<script type="text/javascript">
Paddle.Setup({vendor: {{ PADDLE_VENDOR_ID }}});
function upgrade(productId) {
Paddle.Checkout.open({
product: productId,
email: "{{ current_user.email }}",
success: "{{ success_url }}"
});
}
</script>
{% endblock %}