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