-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: system enrollment error - 500 error when linking (#2088)
- Loading branch information
Showing
7 changed files
with
143 additions
and
7 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
benefits/enrollment/templates/enrollment/system_error.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% extends "core/base.html" %} | ||
{% load i18n %} | ||
|
||
{% block classes %} | ||
{{ block.super | add:" system-enrollment-error" }} | ||
{% endblock classes %} | ||
|
||
{% block page-title %} | ||
{% translate "Enrollment system down" %} | ||
{% endblock page-title %} | ||
|
||
{% block main-content %} | ||
<div class="container"> | ||
<h1 class="h2 text-center"> | ||
<span class="icon d-block pb-4">{% include "core/includes/icon.html" with name="bankcardquestion" %}</span> | ||
{% translate "Our enrollment system is not working right now." %} | ||
</h1> | ||
|
||
<div class="row justify-content-center"> | ||
<div class="col-lg-8 pt-4"> | ||
<p> | ||
{% translate "We’re working to solve the problem. Please wait 48 hours and try to enroll again, or contact your transit agency for help." %} | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div class="row justify-content-center"> | ||
<div class="col-lg-8">{% include "core/includes/agency-links.html" %}</div> | ||
</div> | ||
|
||
<div class="row pt-8 justify-content-center"> | ||
<div class="col-lg-3 col-8"> | ||
{% if authentication and authentication.sign_out_link_template %} | ||
{% url "oauth:logout" as sign_out_url %} | ||
{% translate "Sign out of" as button_text %} | ||
<a href="{{ sign_out_url }}" class="btn btn-lg btn-primary login"> | ||
{{ button_text }} <span class="fallback-text white-logo">Login.gov</span> | ||
</a> | ||
{% else %} | ||
{% include "core/includes/button--origin.html" %} | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock main-content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters