Updated static into page

This commit is contained in:
2025-05-06 14:56:31 -05:00
parent 475c2bfa40
commit 00cb4d7ff5

View File

@@ -1,9 +1,10 @@
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IPTV Service</title>
<title>IPTV Content Server</title>
<style>
body {
font-family: Arial, sans-serif;
@@ -18,6 +19,12 @@
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: center;
}
.logo {
max-width: 200px;
margin: 0 auto 20px;
display: block;
}
h1 {
color: #2c3e50;
@@ -26,6 +33,26 @@
}
.api-links {
margin-top: 20px;
text-align: left;
}
.features {
text-align: left;
margin: 20px 0;
}
.features ul {
list-style-type: none;
padding: 0;
}
.features li {
margin: 10px 0;
padding-left: 20px;
position: relative;
}
.features li:before {
content: "•";
position: absolute;
left: 0;
color: #3498db;
}
a {
color: #3498db;
@@ -38,8 +65,27 @@
</head>
<body>
<div class="container">
<h1>Welcome to the IPTV Service</h1>
<p>This service provides API endpoints for managing IPTV users and content.</p>
<img src="./logo.png" alt="IPTV Server Logo" class="logo">
<h1>IPTV Content Server</h1>
<div class="features">
<h2>Features:</h2>
<ul>
<li>Secure playlist (.m3u/.m3u8) hosting and delivery</li>
<li>EPG (Electronic Program Guide) file management</li>
<li>User authentication and access control</li>
<li>Admin interface for content management</li>
</ul>
</div>
<div class="features">
<h2>How to Use:</h2>
<ul>
<li>Contact administrator for user credentials</li>
<li>Access your playlist using the provided URL and authentication</li>
<li>Configure your IPTV player with the obtained credentials</li>
</ul>
</div>
<div class="api-links">
<h2>API Documentation:</h2>
@@ -49,7 +95,7 @@
</ul>
</div>
<p>For service administration, please use the authorized endpoints.</p>
<p><small>For service administration, please use the authorized endpoints with admin credentials.</small></p>
</div>
</body>
</html>