forked from adrianha/nodemonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_page.ejs
31 lines (28 loc) · 1.12 KB
/
error_page.ejs
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
<html>
<head>
<title>Login</title>
<!-- Core CSS - Include with every page -->
<link href="../css/bootstrap.css" rel="stylesheet">
<link href="../font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="../css/back.css" rel="stylesheet">
</head>
<body style="background:#e7ecee;">
<div id="wrapper">
<div id="page-wrapper">
<div class="row" >
<div class="col-xs-11 col-sm-6 col-md-6 col-md-offset-2">
<div style="border:1px solid #ddd;padding:30px;background:#fff;text-align:center;">
<h2><i class="fa fa-frown-o fa-2x"></i></h2>
<h3><%= error %></h3>
<h2><%= status %></h2>
<h4><a href="/">Go Back</a></h4>
</div>
</div>
</div>
</div>
</div>
<!--
<script src="../js/jquery-1.10.2.min.js"></script>-->
<script src="../js/bootstrap.js"></script>
</body>
</html>