48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>MyApps Launcher</title>
|
|
|
|
<!-- Blocca lo zoom del browser -->
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="setup-page" class="hidden">
|
|
<h2>Configurazione</h2>
|
|
|
|
<button id="cfg-refresh">Aggiorna ora</button>
|
|
|
|
<label>URL</label>
|
|
<input id="cfg-url" type="text">
|
|
|
|
<label>User</label>
|
|
<input id="cfg-user" type="text">
|
|
|
|
<label>Password</label>
|
|
<input id="cfg-pass" type="password">
|
|
|
|
<button id="cfg-save">Salva</button>
|
|
</div>
|
|
|
|
<!-- Griglia icone -->
|
|
<div class="folder" id="folder"></div>
|
|
|
|
<!-- Menu contestuale -->
|
|
<div id="context-menu" class="context-menu hidden">
|
|
<button data-action="rename">Rinomina</button>
|
|
<button data-action="change-icon">Cambia icona</button>
|
|
<button data-action="remove">Rimuovi</button>
|
|
</div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
|
|
<script src="app.js"></script>
|
|
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/eruda"></script>
|
|
<script>
|
|
eruda.init();
|
|
</script> -->
|
|
</body>
|
|
</html>
|