Viewing file: maintenance.php (1.61 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!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">
<title>Bakım - <?= settings('site_name'); ?></title>
<style>
body {
background: rgb(103, 66, 230);
background: linear-gradient(135deg,
rgba(103, 66, 230, 1) 35%,
rgba(114, 68, 237, 1) 100%);
color: white;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.error-image {
max-width: 720px;
width: 90%;
margin: auto;
text-align: center;
}
.error-image h1 {
font-size: 120px;
margin: 48px auto 20px;
}
.error-msg-container {
margin: 18px auto 30px auto;
max-width: 800px;
width: 80%;
text-align: center;
}
.error-msg-container h1 {
font-size: 56px;
max-width: 560px;
margin: auto auto 48px;
}
</style>
</head>
<body>
<div class="error-image">
<h1>👨🔧</h1>
</div>
<div class="error-msg-container">
<h1>Sitemizi geliştiriyoruz!</h1>
<p>Sitemizde aktif olarak bakım mevcuttur, bakım bittiğinde tekrar erişebileceksiniz.</p>
<p>Lütfen daha sonra tekrar deneyin.</p>
</div>
</body>
</html>
|