-
Notifications
You must be signed in to change notification settings - Fork 7
/
db-error.html
86 lines (74 loc) · 3.47 KB
/
db-error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Database Error</title>
<link href="assets/css/style.css" rel="stylesheet">
<!--===============================================================================================-->
<link href="images/icons/gee.ico" rel="icon">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/daterangepicker/daterangepicker.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/register.css">
<style>
*{
font-family: 'Poppins';
}
body{
background:radial-gradient(circle at 60% 100%,#5245b9 5%, #4b458e 94%);
min-height: 100vh;
}
body,.parent-container{
/* background-color: #221f41 ; */
height: 100vh;
}
.message div{
font-size: 2.8rem;
color: #ffd940;
}
.img-fluid{
width: 80rem;
height: 35rem;
}
.btn{
background-color:#f2f2f2;
color: black;
font-size: 2.4rem;
}
</style>
<script>
setTimeout(function(){
window.location.href='login.php';
},5000);
</script>
</head>
<body>
<div class="parent-container container-fluid">
<a href="login.php" style="text-decoration:none;">
<h1 class="logo pl-2 pt-2">CyanoKhoj<span>.</span></h1>
</a>
<center class="message">
<img src="images/icons/database-not-available.svg" class="img-fluid mb-5">
<div> Database configuration/ maintenance in progress.<br/> Please try again later.
Contact Administrator for more information
</div>
<input type="button" class="btn btn-warning mt-5" value="Go Back" onclick="window.location.href='login.php'">
</center>
</body>
</html>