Files
CyberPanel/static/suspension/suspension.html
2025-08-01 14:56:30 +05:00

64 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Suspended</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f5f5f5;
color: #333;
}
.container {
text-align: center;
padding: 40px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
max-width: 500px;
margin: 20px;
}
.icon {
font-size: 80px;
color: #ff6b6b;
margin-bottom: 20px;
}
h1 {
font-size: 28px;
margin-bottom: 15px;
color: #2c3e50;
}
p {
font-size: 16px;
line-height: 1.6;
color: #666;
margin-bottom: 20px;
}
.contact-info {
font-size: 14px;
color: #999;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eee;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">⚠️</div>
<h1>Website Suspended</h1>
<p>This website has been temporarily suspended. The site owner may have failed to renew their hosting service or violated the terms of service.</p>
<p>If you are the owner of this website, please contact your hosting provider for more information about reactivating your website.</p>
<div class="contact-info">
<p>Powered by CyberPanel</p>
</div>
</div>
</body>
</html>