diff options
Diffstat (limited to 'views/error.ejs')
| -rw-r--r-- | views/error.ejs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/error.ejs b/views/error.ejs new file mode 100644 index 0000000..88e1a27 --- /dev/null +++ b/views/error.ejs @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> + <title>Error: <%= code %></title> + <link rel="stylesheet" href="/css/globalstyles.css"> +</head> +<body> + <div id="main-container"> + <%- include('partials/header') %> + <div id="content-container"> + <%- include('partials/navbar') %> + <div id="content"> + <h1>An error occurred (<%= code %>)</h1> + <p>Go <a href="/">home</a>?</p> + </div> + </div> + </div> +</body> +</html> |
