mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
1d45ad8b2a
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.
9 lines
413 B
HTML
9 lines
413 B
HTML
{% extends "_base.html" %}
|
|
{% block title %}Request to add an email address to your Matrix account{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>A request to add an email address to your Matrix account has been received. If this was you, please click the link below to confirm adding this email:</p>
|
|
<a href="{{ link }}">{{ link }}</a>
|
|
<p>If this was not you, you can safely ignore this email. Thank you.</p>
|
|
{% endblock %}
|