-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
executable file
·129 lines (115 loc) · 4.54 KB
/
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloud Admin Dashboard</title>
<meta name="description" content="Cloud Admin Panel" />
<meta name="keywords" content="Admin, Dashboard, Bootstrap3, Sass, transform, CSS3, HTML5, Web design, UI Design, Responsive Dashboard, Responsive Admin, Admin Theme, Best Admin UI, Bootstrap Theme, Bootstrap, Light weight Admin Dashboard,Light weight, Light weight Admin, Light weight Dashboard" />
<meta name="author" content="Bootstrap Gallery" />
<link rel="shortcut icon" href="img/favicon.ico">
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Main CSS -->
<link href="css/main.css" rel="stylesheet" media="screen">
<!-- Font Awesome -->
<link href="fonts/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body style="background: #398ab9;">
<!-- Container fluid starts -->
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 col-lg-push-4 col-md-push-3 col-md-6 col-sm-push-3 col-sm-6 col-sx-12">
<!-- Error container starts -->
<div class="error-container">
<h1>Oops!</h1>
<h2 class="text-white">404 Not Found</h2>
<div class="error-details text-white">
Sorry, an error has occured, Requested page not found!
</div>
<div class="error-actions">
<a href="index.html" class="btn btn-info btn-rounded">
<i class="fa fa-home"></i> Home
</a>
<button class="btn btn-success btn-rounded" data-toggle="modal" data-target="#modalSm">Support</button>
<!-- Modal -->
<div class="modal fade" id="modalSm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Fill Form</h4>
</div>
<div class="modal-body">
<!-- Row Starts -->
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject">
</div>
</div>
</div>
<!-- Row Ends -->
<!-- Row Starts -->
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="First Name">
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
</div>
<!-- Row Ends -->
<!-- Row Starts -->
<div class="row">
<div class="col-xs-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Email">
</div>
</div>
<div class="col-xs-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Phone Number">
</div>
</div>
</div>
<!-- Row Ends -->
<!-- Row Starts -->
<div class="row">
<div class="col-xs-12">
<div class="form-group no-margin">
<textarea class="form-control" rows="3"></textarea>
</div>
</div>
</div>
<!-- Row Ends -->
</div>
<div class="modal-footer no-margin">
<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-times"></i></button>
<button type="button" class="btn btn-success">Save</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Error Container ends -->
</div>
</div>
</div>
<!-- Container fluid starts -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>