- Implement DeviceRegistry for remote device management - Add dashboard for device tracking and blocking - Remote device blocking capability with admin control - Support for device aliasing and notes - Enhanced device management interface - Dashboard with real-time device status - Configurable registry URL in build config 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
979 B
HTML
40 lines
979 B
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>Ú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>
|