-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
36 lines (36 loc) · 875 Bytes
/
error.php
File metadata and controls
36 lines (36 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Search Movies</title>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="header">
<div class="row text-center">
<h1>SEARCH MOVIE DATABASE</h1>
</div>
</div>
<hr>
<div class="well row text-center">
<div class="col-sm-12">
<h1>404 Not Found</h1>
<h2>☹ ☹ ☹</h2>
<h3>Sorry, the resource you requested could not be found.</h3>
</div>
<div class="col-sm-12">
<a href="index.php">
<p>Back to Main Page</p>
<p class="glyphicon glyphicon-arrow-left"></p>
</a>
</div>
</div>
</div>
</form>
</div>
</body>
</html>