-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.52 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>AHP Tool</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="css/style.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<header class="center-align teal accent-4 white-text" style="padding: 2rem;">
<h1 style="margin: 0;">AHP Tool</h1>
</header>
<main class="container">
<!-- Purpose -->
<div class="row" style="margin-bottom: 0;">
<div class="input-field col s12">
<p class="caption">Purpose:</p>
<input id="purpose-input" type="text" class="validate" placeholder="What's the purpose?">
</div>
</div>
<!-- <div class="divider"></div> -->
<!-- Alternatives (Choices) -->
<div class="row">
<div class="section col s12 m6">
<p class="caption">Choice(s): <span>(more than 1)</span></p>
<div id="choices-input" class="chips chips-placeholder"></div>
</div>
<!-- <div class="divider"></div> -->
<!-- Criteria -->
<div class="section col s12 m6">
<p class="caption">Criterion: <span>(more than 1)</span></p>
<div id="criterion-input" class="chips chips-placeholder"></div>
</div>
</div>
<div class="row center-align">
<a id="input-btn" class="waves-effect waves-light btn"><i class="material-icons">expand_more</i></a>
</div>
</main>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Include Handlebars from a CDN -->
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
<script src="js/main.js" charset="utf-8"></script>
<script src="js/helper.js" charset="utf-8"></script>
<script src="js/materialize.js" charset="utf-8"></script>
<script src="js/template.js" charset="utf-8"></script>
<!-- Source: https://github.com/google/palette.js -->
<script src="js/palette.js" charset="utf-8"></script>
<script src="js/visualize.js" charset="utf-8"></script>
</body>
</html>