aboutsummaryrefslogtreecommitdiff
path: root/05_callback/index.html
blob: 7a1fba7c042387cc0aa5471d2409e3e3a6d9ba00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html lang="en-US">
<head>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width" />
	<title>Primes in a range</title>
	<script src="./script.mjs" type="module" defer></script>
</head>

<body>
	<label for="aInput">Lower bound (included)</label><br />
	<input id="aInput" name="aInput" /> x <br />
	<label for="bInput">Upper bound (excluded)</label><br />
	<input id="bInput" name="bInput" /> <br />
	<button id="goButton">Compute</button> <br />
	<p id="resultText"></p>
</body>

</html>

Generated with cgit - Back to sebastiano.tronto.net