Malý repozitář pro WTL 3.I 2025/2026
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
730 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fetch API</title>
</head>
<body>
<h1>Hledání uživatele (Fetch API)</h1>
<!-- Formulář -->
<div>
<label for="userId">Zadejte ID uživatele (1-10):</label>
<input type="number" name="userId" id="userId" value="1">
<button id="btnNajdi">Najít uživatele</button>
<button id="btnVse">Najít všechny</button>
</div>
<!-- Zobrazování výsledků -->
<div id="vystup">
<p id="stav">Připraveno k hledání....</p>
<div id="vysledek"></div>
</div>
<script src="script.js"></script>
</body>
</html>