Webchance/static/index.html
Gian Breitenstein 2f7d1a03cb
All checks were successful
Release / publish (push) Successful in 57s
Moved css to own file, changed parameters to look like labels. Costumized output text.
2024-09-26 21:47:02 +02:00

43 lines
904 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script type = "text/javascript" src="app.js"></script>
</head>
<link rel="stylesheet" href="style.css">
<body>
<h1>Pokemon catcher</h1>
<div class="labelcontainer">
<label>Chance</label>
<input type="number" id="Chance" name="Chance" min="10">
</div>
<div class="labelcontainer">
<label>Multiplicator</label>
<input type="number" id="Multiplicator" name="Multiplicator" min="1" max="3">
</div>
<div class="labelcontainer">
<label>name</label>
<input type="text" id="name" maxlength="15">
</div>
<div>
<input type="button" onclick="calcChanche()" value="Generate">
</div>
<p id="won"></p>
<div>
<label>winners</label>
<p id="winners"></p>
</div>
</body>
<script>
getWinners()
</script>
</html>