11 lines
430 B
Twig
11 lines
430 B
Twig
{% extends '@yuuno/master.twig' %}
|
|
|
|
{% set title = 'Purchase complete!' %}
|
|
|
|
{% block content %}
|
|
<div class="content content--alt" style="text-align: center;">
|
|
<h1 style="margin: 1em auto;">Thank you for your contribution!</h1>
|
|
<h1 class="fa fa-heart" style="font-size: 20em;"></h1>
|
|
<h3>Your Tenshi will expire on {{ user.isPremium|date(config('general.date_format')) }}.</h3>
|
|
</div>
|
|
{% endblock %}
|