-
Notifications
You must be signed in to change notification settings - Fork 32
/
pages-404.html
72 lines (69 loc) · 2.67 KB
/
pages-404.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!--
* CoreUI - Open Source Bootstrap Admin Template
* @version v1.0.0-alpha.2
* @link http://coreui.io
* Copyright (c) 2016 creativeLabs Łukasz Holeczek
* @license MIT
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="CoreUI Bootstrap 4 Admin Template">
<meta name="author" content="Lukasz Holeczek">
<meta name="keyword" content="CoreUI Bootstrap 4 Admin Template">
<!-- <link rel="shortcut icon" href="assets/ico/favicon.png"> -->
<title>CoreUI Bootstrap 4 Admin Template</title>
<!-- Icons -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/simple-line-icons.css" rel="stylesheet">
<!-- Main styles for this application -->
<link href="css/style.css" rel="stylesheet">
</head>
<body class="">
<div class="container">
<div class="row">
<div class="col-md-5 m-x-auto pull-xs-none vamiddle">
<div class="clearfix">
<h1 class="pull-left display-3 m-r-2">404</h1>
<h4 class="p-t-1">Oops! You're lost.</h4>
<p class="text-muted">The page you are looking for was not found.</p>
</div>
<div class="input-prepend input-group">
<span class="input-group-addon"><i class="fa fa-search"></i>
</span>
<input id="prependedInput" class="form-control" size="16" type="text" placeholder="What are you looking for?">
<span class="input-group-btn">
<button class="btn btn-info" type="button">Search</button>
</span>
</div>
</div>
</div>
</div>
<!-- Bootstrap and necessary plugins -->
<script src="js/libs/jquery.min.js"></script>
<script src="js/libs/tether.min.js"></script>
<script src="js/libs/bootstrap.min.js"></script>
<script>
function verticalAlignMiddle()
{
var bodyHeight = $(window).height();
var formHeight = $('.vamiddle').height();
var marginTop = (bodyHeight / 2) - (formHeight / 2);
if (marginTop > 0)
{
$('.vamiddle').css('margin-top', marginTop);
}
}
$(document).ready(function()
{
verticalAlignMiddle();
});
$(window).bind('resize', verticalAlignMiddle);
</script>
<!-- Grunt watch plugin -->
<script src="//localhost:35729/livereload.js"></script>
</body>
</html>