diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/404.html | 56 | ||||
-rw-r--r-- | templates/500.html | 25 |
2 files changed, 81 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..ffcc4c6 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,56 @@ +{% extends "base.html" %} +{% block meta %} +<link href='http://fonts.googleapis.com/css?family=Mrs+Saint+Delafield' rel='stylesheet' type='text/css'> +<style type="text/css"> +.magritte { + font-family: 'Mrs Saint Delafield', cursive; + font-size: 30px; + padding-top: 20px; +} +.magritte-outer { + font-size: 48px; + text-align: center; + width: 50%; +} +.url { + font-family: Courier, monospace; + margin-top: 20px; + margin-bottom: 20px; + font-weight: bold; + padding: 20px; + border-bottom: 1px solid #dddddd; +} +.explain { + margin-top: 50px; + text-align: center; + font-size: larger; +} +</style> +{% endblock %} +{% block content %} +<div> + <div class="page-header"> + <h1>404 - Page Not Found</h1> + </div> + <div class="row"> + <div class="span3"> + + </div> + <div class="magritte-outer span4 well"> + <div class="url">{{request_path}}</div> + + <div class="magritte">Ceci n'est pas une url</div> + </div> + <div class="span2"> + + </div> + </div> + + <div class="explain row"> + <p> + The page you are looking for does not seem to be here. Please <a href="/">go back and try again</a> or + <a class="btn btn-small btn-success" href="/myroom">Click Here To Start an Online Meeting Now</a> + </p> + </div> +</div> +{% endblock %}
\ No newline at end of file diff --git a/templates/500.html b/templates/500.html new file mode 100644 index 0000000..2792a4c --- /dev/null +++ b/templates/500.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> +<head> + <title>Meeting Tools</title> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <link type="text/css" href="{{STATIC_URL}}/bootstrap/css/bootstrap.min.css" rel="stylesheet"/> + <link href="{{theme.base}}/lavish.less" rel="stylesheet/less" type="text/css" /> + <link href="{{STATIC_URL}}/css/style.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div class="container"> + <div class="error-page alert"> + <div class="page-header"><h1>Oh Crap!</h1></div> + <p> + Something just went badly wrong with meetingtools... But don't worry, we're on it! + </p> + </div> + <div class="pull-right error-retry"> + <p>In the meantime you could try to <a href="/">go back and try again...</a></p> + </div> + <div class="clearfix"></div> + <hr/> +</div> +</body>
\ No newline at end of file |