Webchance/static/index.html

43 lines
904 B
HTML
Raw Normal View History

2024-09-26 16:43:51 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script type = "text/javascript" src="app.js"></script>
</head>
<link rel="stylesheet" href="style.css">
2024-09-26 16:43:51 +02:00
<body>
<h1>Pokemon catcher</h1>
2024-09-26 16:43:51 +02:00
2024-09-26 16:43:51 +02:00
<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">
2024-09-26 16:43:51 +02:00
</div>
<div>
2024-09-26 17:46:12 +02:00
<input type="button" onclick="calcChanche()" value="Generate">
</div>
<p id="won"></p>
2024-09-26 17:46:12 +02:00
<div>
<label>winners</label>
2024-09-26 17:46:12 +02:00
<p id="winners"></p>
2024-09-26 16:43:51 +02:00
</div>
</body>
2024-09-26 17:46:12 +02:00
<script>
getWinners()
</script>
2024-09-26 16:43:51 +02:00
</html>