-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.54 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Oracle</title>
<script src="jquery-3.3.1.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="bootstrap-progressbar.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="app.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="entry">
<p>This app helps you make decisions. Please enter the possible choices:</p>
<form>
<div class="form-group">
<ul class="list-group">
<li class="list-group-item">
<input type="text" class="form-control" autofocus required>
</li>
<li class="list-group-item">
<input type="text" class="form-control" required>
</li>
<li class="list-group-item">
<input type="text" class="form-control">
</li>
</ul>
</div>
<div class="form-group">
<input class="submit btn btn-success" type="submit" value="Calculate result">
</div>
</form>
</div>
<div class="calculation invisible">
<p>Calculating the optimal result..</p>
<div class="progressbar">
</div>
</div>
<div class="result invisible">
<blockquote class="blockquote">Do something</blockquote>
<form>
<div class="form-group">
<a class="btn btn-success" href="">Continue</a>
<input class="submit btn btn-danger" type="submit" value="I'm not 100% satisified with the outcome">
</div>
</form>
</div>
</div>
</body>
</html>