diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-01-23 15:52:49 -0500 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-01-23 15:52:49 -0500 |
| commit | a1b29429b53f0c97a014403534312596da0f4cc1 (patch) | |
| tree | 8d99d064fa65ddb0200cb763a4c7314f8730f46f /views/error.ejs | |
| download | bnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.tar.gz bnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.tar.bz2 bnbaim-auth-a1b29429b53f0c97a014403534312596da0f4cc1.zip | |
Initial commit
Diffstat (limited to 'views/error.ejs')
| -rw-r--r-- | views/error.ejs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/error.ejs b/views/error.ejs new file mode 100644 index 0000000..d273621 --- /dev/null +++ b/views/error.ejs @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/css/style.css"> + <title>bnbAIM</title> +</head> +<body> + <div class="background"></div> + <div class="container"> + <h1>Oh no! Something went wrong!</h1> + <p><%= error %></p> + </div> +</body> +</html> |
