Update templates/index.html
Browse files- templates/index.html +33 -7
templates/index.html
CHANGED
|
@@ -19,30 +19,36 @@
|
|
| 19 |
<h1 id="welcome-title">Synapse OS</h1>
|
| 20 |
<p id="loading-status">Listo para arrancar.</p>
|
| 21 |
<div id="user-creation" style="display: none;">
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
</div>
|
| 24 |
-
<!-- ¡EL CAMBIO CLAVE! -->
|
| 25 |
<button id="wake-ai-btn" style="display: none;">
|
| 26 |
<i class="fas fa-power-off"></i> Despertar IA
|
| 27 |
</button>
|
| 28 |
</div>
|
| 29 |
</div>
|
| 30 |
|
| 31 |
-
<!-- Interfaz Principal
|
| 32 |
<div id="app-container" class="screen">
|
| 33 |
<video id="camera-feed" autoplay playsinline muted></video>
|
|
|
|
| 34 |
<header>
|
| 35 |
<div id="status-indicator">
|
| 36 |
<div class="status-dot offline"></div>
|
| 37 |
-
<span id="status-text">
|
| 38 |
</div>
|
| 39 |
<button id="settings-btn" class="header-btn"><i class="fas fa-cog"></i></button>
|
| 40 |
</header>
|
|
|
|
| 41 |
<main id="main-content">
|
| 42 |
<div id="output-container">
|
| 43 |
<p id="output-text">¡Buenas! Soy tu compañero digital. Cuando quieras, despertame.</p>
|
| 44 |
</div>
|
| 45 |
</main>
|
|
|
|
| 46 |
<footer>
|
| 47 |
<button id="eco-btn" class="control-btn" data-mode="eco" disabled><i class="fas fa-recycle"></i><span>Eco-Modo</span></button>
|
| 48 |
<button id="root-btn" class="control-btn" data-mode="root" disabled><i class="fas fa-feather-alt"></i><span>Modo Raíz</span></button>
|
|
@@ -50,14 +56,34 @@
|
|
| 50 |
</footer>
|
| 51 |
</div>
|
| 52 |
|
| 53 |
-
<!-- Paneles Modales (
|
| 54 |
<div id="consciousness-mirror" class="modal-panel">
|
| 55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
</div>
|
| 57 |
<div id="settings-screen" class="modal-panel">
|
| 58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
</div>
|
| 60 |
|
|
|
|
| 61 |
<script type="module" src="/static/main.js"></script>
|
| 62 |
</body>
|
| 63 |
</html>
|
|
|
|
| 19 |
<h1 id="welcome-title">Synapse OS</h1>
|
| 20 |
<p id="loading-status">Listo para arrancar.</p>
|
| 21 |
<div id="user-creation" style="display: none;">
|
| 22 |
+
<p>¡Buenas! ¿Cómo te llamo?</p>
|
| 23 |
+
<input type="text" id="username-input" placeholder="Tu nombre o apodo...">
|
| 24 |
+
<p style="margin-top:15px;">¿Y cómo querés que me llame yo?</p>
|
| 25 |
+
<input type="text" id="ainame-input" placeholder="Bautizame (ej: Cacho, Synty)...">
|
| 26 |
+
<button id="create-user-btn">¡Arrancamos!</button>
|
| 27 |
</div>
|
|
|
|
| 28 |
<button id="wake-ai-btn" style="display: none;">
|
| 29 |
<i class="fas fa-power-off"></i> Despertar IA
|
| 30 |
</button>
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
|
| 34 |
+
<!-- Interfaz Principal de la Aplicación -->
|
| 35 |
<div id="app-container" class="screen">
|
| 36 |
<video id="camera-feed" autoplay playsinline muted></video>
|
| 37 |
+
|
| 38 |
<header>
|
| 39 |
<div id="status-indicator">
|
| 40 |
<div class="status-dot offline"></div>
|
| 41 |
+
<span id="status-text">En reposo</span>
|
| 42 |
</div>
|
| 43 |
<button id="settings-btn" class="header-btn"><i class="fas fa-cog"></i></button>
|
| 44 |
</header>
|
| 45 |
+
|
| 46 |
<main id="main-content">
|
| 47 |
<div id="output-container">
|
| 48 |
<p id="output-text">¡Buenas! Soy tu compañero digital. Cuando quieras, despertame.</p>
|
| 49 |
</div>
|
| 50 |
</main>
|
| 51 |
+
|
| 52 |
<footer>
|
| 53 |
<button id="eco-btn" class="control-btn" data-mode="eco" disabled><i class="fas fa-recycle"></i><span>Eco-Modo</span></button>
|
| 54 |
<button id="root-btn" class="control-btn" data-mode="root" disabled><i class="fas fa-feather-alt"></i><span>Modo Raíz</span></button>
|
|
|
|
| 56 |
</footer>
|
| 57 |
</div>
|
| 58 |
|
| 59 |
+
<!-- Paneles Modales (Espejo y Ajustes) -->
|
| 60 |
<div id="consciousness-mirror" class="modal-panel">
|
| 61 |
+
<div class="panel-content">
|
| 62 |
+
<div class="panel-header">
|
| 63 |
+
<h2>El Espejo de la Conciencia</h2>
|
| 64 |
+
<button class="close-panel-btn"><i class="fas fa-times"></i></button>
|
| 65 |
+
</div>
|
| 66 |
+
<div id="mirror-log" class="panel-body"></div>
|
| 67 |
+
</div>
|
| 68 |
</div>
|
| 69 |
<div id="settings-screen" class="modal-panel">
|
| 70 |
+
<div class="panel-content">
|
| 71 |
+
<div class="panel-header">
|
| 72 |
+
<h2>Ajustes</h2>
|
| 73 |
+
<button class="close-panel-btn"><i class="fas fa-times"></i></button>
|
| 74 |
+
</div>
|
| 75 |
+
<div class="panel-body">
|
| 76 |
+
<h3>Personalización</h3>
|
| 77 |
+
<p>Acá podés cambiar mi nombre cuando quieras.</p>
|
| 78 |
+
<input type="text" id="ainame-settings-input" placeholder="Mi nuevo nombre...">
|
| 79 |
+
<button id="save-settings-btn">Guardar Cambios</button>
|
| 80 |
+
<hr>
|
| 81 |
+
<button id="mirror-toggle-btn">Abrir Espejo de la Conciencia</button>
|
| 82 |
+
</div>
|
| 83 |
+
</div>
|
| 84 |
</div>
|
| 85 |
|
| 86 |
+
<!-- El Corazón de Synapse OS -->
|
| 87 |
<script type="module" src="/static/main.js"></script>
|
| 88 |
</body>
|
| 89 |
</html>
|