11 lines
453 B
Twig
11 lines
453 B
Twig
{% extends 'global/master.twig' %}
|
|
|
|
{% block title %}Purchase complete!{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="content standalone" style="text-align: center;">
|
|
<h1 class="stylised" style="margin: 1em auto;">Thank you for your contribution!</h1>
|
|
<h1 class="fa fa-heart stylised" style="font-size: 20em;"></h1>
|
|
<h3>Your Tenshi will expire on {{ user.isPremium|date('D Y-m-d H:i:s T') }}.</h3>
|
|
</div>
|
|
{% endblock %}
|