-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrorpage.php
70 lines (66 loc) · 1.92 KB
/
errorpage.php
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
<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style>
body {
background-image: url(img/pic.png);
background-color: #bbb;
}
.error-template {
padding: 40px 15px;
text-align: center;
}
.error-actions {
margin-top: 15px;
margin-bottom: 15px;
}
a{
text-decoration: none;
border:1px solid green;
border-radius: 8px;
padding: 10px;
color: gold;
}
a:hover{
background-color: #4CAF50;
color: #fff;
}
div .design{
border:1px solid gold;
border-radius: 5px;
padding: 8px;
color: #fff;
width: 480px;
margin-left: 380px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="error-template">
<h1 style="color:#fff;font-size:50px">
Oops!
</h1>
<h2 style="color:red">
Error
</h2>
<div class="error-details" style="color:#fff"> An error occurred while processing your request.</div>
<div class="error-actions"><br/>
<a href="index.php" class="">
<span class=""></span>
Take Me Home
</a>
</div>
</div>
</div>
<br/>
<div class="design" align="center">
<label>©2015-2016 | Doctor Patient Portal | All right reserved | Faisal Porag</label>
</div>
</div>
</div>
</body>
</html>