blob: a4ba67425e9c99f6e7376a96ea5c406a2a41f954 (
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" disabled>Loading, please wait...</button> <br />
<p id="resultText"></p>
</body>
</html>
|