2022-06-29 11:28:26 +02:00
{% extends "default.html" %}
2021-07-13 08:54:37 +02:00
{% set active_page = "dashboard" %}
2021-11-22 16:30:27 +01:00
{% block head %}
2022-06-29 11:28:26 +02:00
2021-11-22 16:30:27 +01:00
< 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" > < \ / s c r i p t > ' )
}
2022-06-29 11:28:26 +02:00
< / script >
< style type = "text/css" >
2021-11-22 16:30:27 +01:00
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;
}
2022-06-29 11:28:26 +02:00
< / style >
2021-11-22 16:30:27 +01:00
{% endblock %}
2022-06-29 11:28:26 +02:00
{% block title %}Coupon{% endblock %}
2021-07-13 08:54:37 +02:00
{% block default_content %}
2021-11-22 16:30:27 +01:00
2022-06-29 11:28:26 +02:00
{% if can_use_coupon %}
< div class = "card" >
< div class = "card-body" >
< h1 class = "h2" > Coupon< / h1 >
< div class = "mb-4" > Please enter the coupon here to upgrade your account or extend your current subscription.< / div >
< form method = "post" >
{{ coupon_form.csrf_token }}
{{ coupon_form.code(class="form-control", placeholder="Licence Code") }}
{{ render_field_errors(coupon_form.code) }}
< button class = "btn btn-success mt-2" > Apply< / button >
< / form >
< / div >
< / div >
{% endif %}
< div class = "card" >
< div class = "card-body" >
< h2 > 1-year coupon< / h2 >
< div class = "mb-3" >
You can buy a 1-year coupon that allows anyone to have the SimpleLogin premium for 1 year.
Can be an idea for a gift card :).
After the payment, the coupon will be sent to you by email.
< / div >
< div class = "alert alert-info" > The coupon must be used before {{ max_coupon_date.date().isoformat() }}< / div >
< a href = "#!" class = "paddle_button btn btn-primary" data-product = "{{ PADDLE_COUPON_ID }}" >
Buy 1-year SimpleLogin
coupon
< / a >
< / div >
< / div >
2021-11-22 16:30:27 +01:00
{% endblock %}
2022-06-29 18:21:49 +02:00
{% block script %}< script type = "text/javascript" > Paddle . Setup ( { vendor : { { PADDLE _VENDOR _ID } } } ) ; < / script > {% endblock %}