-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* error404 handled * all changes for 404 * final fix error404 * Basic template for 404 * error changes updated * error changes updated
- Loading branch information
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
% include('base.html', title="PyJudge") | ||
<body > | ||
<div class="d-flex h-100 align-items-center justify-content-center text-center" style="min-height:600px"> | ||
<div class="container" > | ||
<h1 class="display-1">{{errorcode}}</h1> | ||
<h4 class="text-muted"> {{errorbody}}</h4> | ||
<div class="text-center"> | ||
<a href="/" class='btn btn-outline-primary'>Go To Homepage</a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |