diff options
Diffstat (limited to 'templates/error.rs.html')
-rw-r--r-- | templates/error.rs.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/error.rs.html b/templates/error.rs.html new file mode 100644 index 0000000..cebb935 --- /dev/null +++ b/templates/error.rs.html @@ -0,0 +1,24 @@ +@use super::statics::*; +@use actix_web::http::StatusCode; + +@(code: StatusCode, message: &str) + +<!doctype html> +<html lang="en" class="error"> + +<head> + <title>Error @code.as_u16(): @code.canonical_reason().unwrap_or("error")</title> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="stylesheet" type="text/css" href="/static/@style_css.name" /> +</head> + +<body> + <main> + <h1>@code.canonical_reason().unwrap_or("error")</h1> + + <p>@message</p> + <p>oopsie!</p> + </main> +</body> + +</html>
\ No newline at end of file |