mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-02-05 04:05:18 -05:00
![Germain](/assets/img/avatar_default.png)
Use a base template to create a cohesive feel across the HTML templates provided by Synapse. Adds basic styling to the base template for a more user-friendly look and feel.
7 lines
308 B
HTML
7 lines
308 B
HTML
{% extends "_base.html" %}
|
|
{% block title %}Your account has been successfully renewed and is valid until {{ expiration_ts|format_ts("%d-%m-%Y") }}.{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>Your account has been successfully renewed and is valid until {{ expiration_ts|format_ts("%d-%m-%Y") }}.</p>
|
|
{% endblock %}
|