mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
28 lines
No EOL
654 B
HTML
28 lines
No EOL
654 B
HTML
{% extends 'default.html' %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
|
|
{% block title %}
|
|
Lifetime Licence
|
|
{% endblock %}
|
|
|
|
{% block default_content %}
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h2">Lifetime Licence</h1>
|
|
|
|
<div class="mb-4">
|
|
If you have a lifetime licence, please paste it here. <br>
|
|
</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>
|
|
|
|
{% endblock %} |