-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fishing boat application</title>
<!-- Bootstrap -->
<link href="src/vendor/twbs/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="src/css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="well">My Fishing Boat application</div>
<form>
<div class="form-group">
<label for="hull_length">Hull Length:</label>
<input type="text" class="form-control" id="hull_length"/>
</div>
<div class="form-group">
<label for="buttock_angle">Buttock Angle:</label>
<input type="number" class="form-control" id="buttock_angle" min="2" max="7" step="0.1"/>
</div>
<div class="form-group">
<label for="displacement">Displacement:</label>
<input type="number" class="form-control" id="displacement" min="0"/>
</div>
<button type="button" class="btn btn-default">Submit</button>
</form>
<div class="response">
<div class="panel panel-default">
<div class="panel-body">Your computed power requirements:</div>
</div>
<div class="listing"
</div>
<script src="src/vendor/components/jquery/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="src/vendor/twbs/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="src/js/main.js"></script>
</body>
</html>