-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a view and template for a server error
- Loading branch information
1 parent
9194890
commit 103a9bc
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,19 @@ | ||
{% extends 'base.html' %} | ||
{% block title %}Server Error{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div class="container mt-5 text-center"> | ||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<a href="{{ url_for('appointment') }}"><img class="img-fluid" src="{{ url_for('static', filename='images/500error.jpg')}}" alt="500 server error"></a> | ||
</div> | ||
<div class="col-sm-12 mt-3"> | ||
<p class="lost">It looks like there has been a server error...</p> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
{% endblock content %} |