-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnection-error.php
More file actions
62 lines (53 loc) · 1.71 KB
/
connection-error.php
File metadata and controls
62 lines (53 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="fa-IR" dir="rtl">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url("./common.css");
a,
span {
color: var(--bg-4);
}
body {
width: 100%;
display: flex;
min-height: 100vh;
min-height: 100svh;
flex-direction: column;
justify-content: center;
align-items: center;
background: var(--bg-2);
}
.container {
width: 92%;
max-width: 400px;
}
h1 {
margin-bottom: 1rem;
color: rgb(173, 8, 41);
}
img {
width: 100%;
margin-bottom: 2rem;
}
p {
text-align: justify;
font-size: .875rem;
}
</style>
<title>خطای اتصال با پایگاه داده</title>
</head>
<body>
<div class="container">
<h1>خطا!</h1>
<img src="assets/pic.svg" alt="خطای اتصال">
<p>اتصال با <span>پایگاه داده</span> برقرار نشد. ممکن است این مشکل موقت باشد. اگر این مشکل برای شما پایدار است،
با متخصص ارتباط برقرار کنید.</p>
</div>
</body>
</html>