Adding capability of pretty error pages (#13852)

Co-authored-by: Jessica Steurer <70719005+jay-steurer@users.noreply.github.com>
This commit is contained in:
John Westcott IV
2023-05-23 13:05:38 -04:00
committed by GitHub
parent 00d8291d40
commit daf39dc77e
9 changed files with 533 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>On Break...</title>
<meta http-equiv="refresh" content="2">
<link rel="stylesheet" href="/static/custom_error.css">
</head>
<body>
<div class="container">
<div class="upper_div">
<img class="main_image" src="/static/awx-spud-reading.svg"/>
<span class="error_number">502</span>
</div>
<div class="message_div">
<div class="m1">HTTP Response: 502</div>
<div class="m2">The spud is taking a much needed break...</div>
<div class="m3">Please check back later.</div>
</div>
</div>
</body>
</html>