-
Notifications
You must be signed in to change notification settings - Fork 0
/
packing_list.html
40 lines (33 loc) · 1.19 KB
/
packing_list.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
<html>
<head>
<title>Brake Lining:Packing List Generator</title>
<meta content="">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Optional theme -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css"> -->
<!-- Latest compiled and minified JavaScript -->
<script src="./js/jquery-2.1.3.js"></script>
<script src="./js/bootstrap.js"></script>
<style></style>
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h1><u>Packing List Generator</u></h1>
<p>Enter your order to generate Packing List</p>
</div>
<div id="order">
</div><!-- /. order -->
<br>
<button class="btn btn-default" type="button" id="addRows">Add more rows</button>
<button class="btn btn-default" type="button" id="createList">Create Packing List</button>
</div><!-- /.container -->
<div id="packing-list">
</div>
<script src="./box_sizes.js"></script>
<script src="./js/packing_list.js"></script>
<script src="./js/size.js"></script>
<script src="./js/box_group.js"></script>
<script src="./js/order.js"></script>
</body>
</html>