diff options
| author | Bobby <[email protected]> | 2022-06-03 16:54:52 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-06-03 16:54:52 +0530 |
| commit | 692eecf32e4d569a55de2c4b5abb6a6897c88abe (patch) | |
| tree | 9575c0f7dbe31a8e4e064a6bc02e0ed7510ebc8d /views/error.ejs | |
| parent | 34407aa326383b641609e1effa39418341b740c0 (diff) | |
| download | thatcomputerscientist-692eecf32e4d569a55de2c4b5abb6a6897c88abe.tar.xz thatcomputerscientist-692eecf32e4d569a55de2c4b5abb6a6897c88abe.zip | |
password change function
Diffstat (limited to 'views/error.ejs')
| -rw-r--r-- | views/error.ejs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/views/error.ejs b/views/error.ejs new file mode 100644 index 00000000..d11cc4be --- /dev/null +++ b/views/error.ejs @@ -0,0 +1,14 @@ +<%- include('partials/header.ejs') %> <%- include('partials/sidebar.ejs') %> +<div class="main"> + <div class="alert"> + <h1 class="error">error</h1> + <p> + <%= error %> + </p> + </div> + <section> + <h2>Recent Posts</h2> + </section> +</div> + +<%- include('partials/footer.ejs') %> |
