2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-01-03 22:40:44 +01:00
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Lifetime Licence{% endblock %}
|
2020-01-03 22:40:44 +01:00
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2021-07-13 08:54:37 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h2">Lifetime Licence</h1>
|
2020-05-11 23:22:06 +02:00
|
|
|
<div class="mb-4">
|
2022-06-29 11:28:26 +02:00
|
|
|
If you have a lifetime licence, please paste it here.
|
|
|
|
<br />
|
2020-05-11 23:22:06 +02:00
|
|
|
</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>
|
2020-01-03 22:40:44 +01:00
|
|
|
</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% endblock %}
|