-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
56 lines (53 loc) · 1.6 KB
/
error.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
<!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.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>500 Error Page</title>
<style>
img{
display: block;
margin-left: auto;
margin-right: auto;
}
.homebtn{
background:none;
border:1px solid #1f2b7b !important;
color:#1f2b7b;
}
.homebtn:hover{
background:#1f2b7b !important;
color:#fff;
}
.gif{
width:50%;
height:50%;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
}
@media screen and (max-width: 800px) {
.gif{
margin-left: 0;
margin-top: 100px;
margin-right: 0;
width:100%;
}
.gif img{
width:100%;
height:100%;
}
}
</style>
</head>
<body>
<div class="gif">
<img src="assets/img/404/500.gif" alt="404 Error" class="center">
</div>
<div class="text-center">
<a href="https://qualifind.rushilshah.in" type="button" class="btn homebtn">Go Back To Home</a>
</div>
</body>
</html>