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.
8 lines
230 B
HTML
8 lines
230 B
HTML
{% extends "_base.html" %}
|
|
{% block title %}Request failed{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>The request failed for the following reason: {{ failure_reason }}.</p>
|
|
<p>No changes have been made to your account.</p>
|
|
{% endblock %}
|