122 lines
3.8 KiB
Django/Jinja
122 lines
3.8 KiB
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ redirector_subdomain }} - Content Delivery Network</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
}
|
|
header {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
padding: 2em;
|
|
}
|
|
.card {
|
|
background-color: white;
|
|
border-radius: 5px;
|
|
padding: 1.5em;
|
|
margin-bottom: 1.5em;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
}
|
|
.feature {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1em;
|
|
}
|
|
.feature-icon {
|
|
background-color: #3498db;
|
|
color: white;
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 1em;
|
|
font-weight: bold;
|
|
}
|
|
footer {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 1em;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
background-color: #3498db;
|
|
color: white;
|
|
padding: 0.7em 1.5em;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{ redirector_subdomain }}.{{ domain }}</h1>
|
|
<p>Enterprise Content Delivery Network</p>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<div class="card">
|
|
<h2>Welcome to Our CDN</h2>
|
|
<p>This server is part of our global content delivery network, optimizing digital asset delivery for enterprise applications. Our CDN provides fast, reliable, and secure content distribution across our global network.</p>
|
|
<p><em>This is a private service. Unauthorized access is prohibited.</em></p>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h2>Our Features</h2>
|
|
|
|
<div class="feature">
|
|
<div class="feature-icon">1</div>
|
|
<div>
|
|
<h3>Global Distribution</h3>
|
|
<p>Content cached and distributed across multiple geographic locations for minimum latency.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="feature">
|
|
<div class="feature-icon">2</div>
|
|
<div>
|
|
<h3>DDoS Protection</h3>
|
|
<p>Enterprise-grade protection against distributed denial of service attacks.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="feature">
|
|
<div class="feature-icon">3</div>
|
|
<div>
|
|
<h3>Asset Optimization</h3>
|
|
<p>Automatic compression and format optimization for images, scripts, and styles.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card" style="text-align: center;">
|
|
<h2>Need Access?</h2>
|
|
<p>If you're a client requiring access to our CDN services, please contact your account representative.</p>
|
|
<a href="#" class="btn">Contact Sales</a>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2025 {{ domain }} CDN Services. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html> |