unhandled_error.html 840 B

12345678910111213141516171819
  1. {{ define "unhandled_error.html" }}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="/api/v1/style/bootstrap.min.css">
  8. <link rel="stylesheet" href="/api/v1/style/mdb/mdb.min.css">
  9. </head>
  10. <body style="background-color: rgb(56, 56, 56);">
  11. {{ template "navigation.html" .navigation }}
  12. <div class="col container-fluid" style="max-width: 80vw; background-color: rgb(22, 22, 22);">
  13. <a style="color: red; height: fit-content; font-size: larger; font-family: monospace;">
  14. STATUS: {{ .StatusCode }}. UNHANDLED EXCEPTION RAISED: {{ .Reason }}
  15. </a>
  16. </div>
  17. </body>
  18. </html>
  19. {{ end }}