mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 12:21:22 -05:00
This was done to solve the problem of invitations expiring and the user getting a 500 error message, which says to try again.
12 lines
295 B
HTML
12 lines
295 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% block page_title %}Bad Request{% endblock %}
|
|
{% block maincolumn_content %}
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-medium">
|
|
{{ message|join(",")}}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|