mirror of
https://github.com/sfiorini/iptv-server.git
synced 2026-04-11 10:30:45 +00:00
Updated static into page
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
|
index.html
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>IPTV Service</title>
|
<title>IPTV Content Server</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
@@ -18,6 +19,12 @@
|
|||||||
padding: 30px;
|
padding: 30px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
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 {
|
h1 {
|
||||||
color: #2c3e50;
|
color: #2c3e50;
|
||||||
@@ -26,6 +33,26 @@
|
|||||||
}
|
}
|
||||||
.api-links {
|
.api-links {
|
||||||
margin-top: 20px;
|
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 {
|
a {
|
||||||
color: #3498db;
|
color: #3498db;
|
||||||
@@ -38,8 +65,27 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Welcome to the IPTV Service</h1>
|
<img src="./logo.png" alt="IPTV Server Logo" class="logo">
|
||||||
<p>This service provides API endpoints for managing IPTV users and content.</p>
|
<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">
|
<div class="api-links">
|
||||||
<h2>API Documentation:</h2>
|
<h2>API Documentation:</h2>
|
||||||
@@ -49,7 +95,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user