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.
27 lines
914 B
27 lines
914 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>
|
|
<link rel="stylesheet" href="style.css">
|
|
</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" min="1" max="20">
|
|
<button id="btnNajdi">1. Najít uživatele</button>
|
|
<button id="btnPosty" disabled>2. Načíst jeho příspěvky</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 id="posty-kontejner"></div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|