templates: Use the same outer HTML structure.

This will be helpful when refactoring them to use a common template.

No visual changes.

Tested by create email confirmation link and then manipulated it to
get to various states. Force rendered the realm_creation_disabled
template instead of link_malformed template to check it.
This commit is contained in:
Aman Agrawal 2024-05-29 09:18:50 +00:00 committed by Tim Abbott
parent 0daee09b79
commit 41df20648d
3 changed files with 38 additions and 32 deletions

View File

@ -6,7 +6,8 @@
{% block portico_content %}
<div class="error_page">
<div class="container row-fluid">
<div class="container">
<div class="row-fluid">
<img src="{{ static('images/errors/400art.svg') }}" alt=""/>
<div class="errorbox">
<div class="errorcontent">
@ -20,4 +21,5 @@
</div>
</div>
</div>
</div>
{% endblock %}

View File

@ -6,7 +6,8 @@
{% block portico_content %}
<div class="error_page">
<div class="container row-fluid">
<div class="container">
<div class="row-fluid">
<img src="{{ static('images/errors/500art.svg') }}" alt=""/>
<div class="errorbox">
<div class="errorcontent">
@ -21,4 +22,5 @@
</div>
</div>
</div>
</div>
{% endblock %}

View File

@ -6,7 +6,8 @@
{% block portico_content %}
<div class="error_page">
<div class="container row-fluid">
<div class="container">
<div class="row-fluid">
<img src="{{ static('images/errors/500art.svg') }}" alt=""/>
<div class="errorbox">
<div class="errorcontent">
@ -21,4 +22,5 @@
</div>
</div>
</div>
</div>
{% endblock %}