-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages-500.html
65 lines (63 loc) · 2.68 KB
/
pages-500.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
<!--
* GenesisUI Bootstrap 4 Admin Template built as framework!
* Version 1.3.3
* https://GenesisUI.com
* Copyright 2016 creativeLabs Łukasz Holeczek
* License : https://GenesisUI.com/license.html
-->
<!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="ROOT Admin - UI Admin Kit Powered by Bootstrap 4">
<meta name="author" content="Lukasz Holeczek">
<meta name="keyword" content="ROOT Admin - UI Admin Kit Powered by Bootstrap 4">
<!-- <link rel="shortcut icon" href="assets/ico/favicon.png"> -->
<title>ROOT Admin - UI Admin Kit</title>
<!-- Main styles for this application -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body class="">
<div class="container">
<div class="row">
<div class="col-md-6 center-block pull-xs-none vamiddle">
<div class="clearfix">
<h1 class="pull-left display-3 m-r-2">500</h1>
<h4 class="p-t-1">Huston, we have a problem!</h4>
<p class="text-muted">The page you are looking for is temporarily unavailable.</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="assets/js/libs/jquery.min.js"></script>
<script src="assets/js/libs/tether.min.js"></script>
<script src="assets/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>
</body>
</html>