- Incremented version to 9.3.0 (versionCode: 93000) - Added Telegram integration for device notifications - Implemented token-based verification system - Enhanced device registry with IP/country detection - Added split token verification for admin/user validation - Improved dashboard with real-time notifications - Enhanced blocking system with token verification - Added geo-location tracking for devices - Improved device management interface - Enhanced security controls and monitoring 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>StreamPlayer Device Dashboard</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Control de Dispositivos StreamPlayer</h1>
|
|
<p>Visualiza instalaciones activas y bloquea acceso con un clic.</p>
|
|
</header>
|
|
<section class="actions">
|
|
<button id="refreshBtn">Actualizar listado</button>
|
|
<span id="statusMessage"></span>
|
|
</section>
|
|
<section class="table-wrapper">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Alias / Nombre</th>
|
|
<th>Device ID</th>
|
|
<th>Modelo</th>
|
|
<th>Versión app</th>
|
|
<th>IP Pública</th>
|
|
<th>País</th>
|
|
<th>Verificación</th>
|
|
<th>Última vez visto</th>
|
|
<th>Estado</th>
|
|
<th>Acciones</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="devicesTable">
|
|
<tr>
|
|
<td colspan="7" class="empty">No hay datos aún</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|