mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 17:35:20 +01:00
98 lines
No EOL
3.1 KiB
HTML
98 lines
No EOL
3.1 KiB
HTML
{% extends 'default.html' %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
|
|
{% block title %}
|
|
Pricing
|
|
{% endblock %}
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
|
<div class="row">
|
|
<div class="col-sm-6 col-lg-6">
|
|
<div class="card">
|
|
<div class="card-body text-center">
|
|
<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>
|
|
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
|
|
Custom Domain
|
|
</li>
|
|
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
|
|
Catch-all (or wildcard) alias
|
|
</li>
|
|
<li><i class="fe fe-check text-success mr-2" aria-hidden="true"></i>
|
|
Directory (or Username)
|
|
<span class="badge badge-info">Coming Soon</span>
|
|
</li>
|
|
</ul>
|
|
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-6 col-lg-6">
|
|
<div class="display-6 my-3">
|
|
🔐 Secure payments by
|
|
<a href="https://paddle.com" target="_blank">Paddle<i class="fe fe-external-link"></i></a></li>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
Please note that Paddle only supports bank card 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).
|
|
</div>
|
|
|
|
<button class="btn btn-success" onclick="upgrade({{ PADDLE_MONTHLY_PRODUCT_ID }})">
|
|
Monthly <br>
|
|
$2.99/month
|
|
</button>
|
|
|
|
<button class="btn btn-primary" onclick="upgrade({{ PADDLE_YEARLY_PRODUCT_ID }})">
|
|
Yearly <br>
|
|
$29.99/year
|
|
</button>
|
|
|
|
<hr class="my-6">
|
|
|
|
<form method="post">
|
|
{{ coupon_form.csrf_token }}
|
|
<input type="hidden" name="form-name" value="create">
|
|
|
|
<div class="font-weight-bold mb-2">Coupon</div>
|
|
<div class="small-text">
|
|
If you have a lifetime coupon, please paste it here. <br>
|
|
For information, we offer free premium account for education (student, professor or technical staff working at
|
|
an educational institute). <br>
|
|
Drop us an email at <a href="mailto:hi@simplelogin.io">hi@simplelogin.io</a> with your student ID or certificate to get the coupon.
|
|
</div>
|
|
|
|
|
|
{{ coupon_form.code(class="form-control", placeholder="Coupon") }}
|
|
{{ render_field_errors(coupon_form.code) }}
|
|
<button class="btn btn-success mt-2">Apply</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.paddle.com/paddle/paddle.js"></script>
|
|
|
|
<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 %} |