42 lines
No EOL
1.6 KiB
HTML
42 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Weighted Choice Maker</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/dark.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<!-- JAVASCRIPT -->
|
|
<script src="./js/add_choice.js"></script>
|
|
<script src="./js/choosing.js"></script>
|
|
</head>
|
|
<body>
|
|
<template id="choice-template">
|
|
<div class="choice">
|
|
<input type="text" class="left" placeholder="Choice Name">
|
|
<input class="right" type="text" placeholder="Choice Weighting">
|
|
<div class="line"></div>
|
|
</div>
|
|
</template>
|
|
<h1>Weighted Choice Maker</h1>
|
|
<div class="container">
|
|
<h2>Choices:</h2>
|
|
<button onclick="add_choice()">Add New Choice</button>
|
|
<br>
|
|
<div class="line"></div>
|
|
<div id="choices">
|
|
<div class="choice">
|
|
<input class="left" type="text" id="text-in-0" placeholder="Choice Name">
|
|
<input class="right" type="text" id="weight-in-0" placeholder="Choice Weighting">
|
|
<div class="line"></div>
|
|
</div>
|
|
</div>
|
|
<button onclick="choose_option()">Choose</button>
|
|
<h2>Chosen Entry: <span id="result"></span></h2>
|
|
</div>
|
|
</body>
|
|
</html> |