Files
esercizi-web/javascript/JS_Esercizi 11 - API/01_get_singolo_utente/index.html
2026-02-05 11:57:28 +01:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Esercizio 1 - GET Singolo Utente</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="../index.html" style="position: absolute; top: 20px; left: 20px; text-decoration: none; color: #555; font-weight: bold;">← Dashboard</a>
<div class="app-container">
<h1>🔍 GET Singolo Utente</h1>
<p class="subtitle">Recupera un utente dal server</p>
<!-- SEZIONE CONFIGURAZIONE -->
<div class="config-box">
<label for="userId">ID Utente (1-40):</label>
<div class="input-group">
<input type="number" id="userId" min="1" max="40" value="1">
<button id="btnFetch">Carica</button>
</div>
</div>
<!-- LOADING SPINNER -->
<div id="loading" class="loading nascosto">
⏳ Caricamento...
</div>
<!-- RISULTATO -->
<div id="result" class="result-container"></div>
</div>
<script src="script.js"></script>
</body>
</html>