-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 1.15 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width = device-width, initial-scale = 1.0, user-scalable = no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<title>Decision maker</title>
<link href="bootstrap.min.css" rel="stylesheet">
<link href="app.css" rel="stylesheet">
</head>
<body>
<h1><img src="questionmark.png" class="lead-image">Decider</h1>
<form id="decisionForm" method="post" action="" class="well well-small">
<fieldset>
<label for="numusers">How many choices do you have?</label>
<input type="number" id="availableChoices" name="numChoices" value="0">
<input type="submit" name="makeDecision" value="Decide!" class="btn btn-primary">
</fieldset>
</form>
<div id="decision" class="alert alert-info"></div>
<div>
<p>Created by: <a href="http://www.martindekeijzer.nl">Martin de Keijzer</a></p>
</div>
<script src="decider.js"></script>
</body>
</html>