-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpage-error-503.html
35 lines (30 loc) · 1.23 KB
/
page-error-503.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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Focus - Bootstrap Admin Dashboard </title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon.png">
<link href="./css/style.css" rel="stylesheet">
</head>
<body class="h-100">
<div class="authincation h-100">
<div class="container-fluid h-100">
<div class="row justify-content-center h-100 align-items-center">
<div class="col-md-5">
<div class="form-input-content text-center">
<div class="mb-5">
<a class="btn btn-primary" href="./index.html">Back to Home</a>
</div>
<h1 class="error-text font-weight-bold">503</h1>
<h4 class="mt-4"><i class="fa fa-times-circle text-danger"></i> Service Unavailable</h4>
<p>Sorry, we are under maintenance!</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>