summaryrefslogtreecommitdiff
path: root/error.php
diff options
context:
space:
mode:
authorroot2014-09-13 22:26:58 +0200
committerroot2014-09-13 22:26:58 +0200
commitc5639ee890215e4e8e0f544821ea8d285ca58eb8 (patch)
tree29f685943c61c4d7ec0e376e485686e985b97065 /error.php
parentf8c60cae423fc78ed21d17a9217716ccc1e6dab1 (diff)
downloadvideo-dl-c5639ee890215e4e8e0f544821ea8d285ca58eb8.tar.gz
init
Diffstat (limited to 'error.php')
-rw-r--r--error.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/error.php b/error.php
new file mode 100644
index 0000000..48f80ce
--- /dev/null
+++ b/error.php
@@ -0,0 +1,27 @@
+<?php header($_SERVER['SERVER_PROTOCOL'] . " 404 Not Found");?>
+<!doctype html>
+
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Error - Video Streaming Proxy</title>
+ <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
+ <link rel="stylesheet" href="/css/style.css">
+ <?php require_once("static/noscript.html"); ?>
+</head>
+<body>
+<?php require_once("static/header.php"); ?>
+ <div class="container">
+ <div class="text-center">
+ <div class="row">
+ <h1><?php echo $error; ?></h1>
+ <br>
+ <p style="font-size: 1.3em;"><?php echo $reason; ?></p>
+ </div>
+ </div>
+ </div>
+<?php require_once("static/foot.php"); ?>
+