diff options
Diffstat (limited to 'templates/not_found.html.ep')
-rw-r--r-- | templates/not_found.html.ep | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/not_found.html.ep b/templates/not_found.html.ep new file mode 100644 index 0000000..a8eafc0 --- /dev/null +++ b/templates/not_found.html.ep @@ -0,0 +1,25 @@ +<html> + + <head> + <meta charset=utf-8> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <title>Not Found</title> + + %= stylesheet '/css/my_bulma.css' + </head> + + <body> + <section class=hero> + <div class=hero-body> + <h1 class=title> + Not the page you are looking for. + </h1> + <p> + Go back or go to the <%= link_to 'start page' => 'login' %>. + </p> + </div> + </section> + </body> + +</html> |