-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>NWC Method</title>
<link rel="stylesheet" href="style/style.css">
<script src="js/script.js"></script>
</head>
<body>
<h1>Supplier - Recipient problem with broker </h1>
<button type="button" id="supplier_btn" onclick="addSupplier()">Add Supplier</button>
<div class="table">
<div class="names">
<div class="cell" id="empty_cell">
</div>
<div class="cell"> S0
<div class="supplier_prop">
<input type="text" size="1">
<input type="text" size="1">
</div>
</div></div>
<div class="row">
<div class="cell">
R0
<div class="recipient_prop">
<input type="text" size="1">
<input type="text" size="1">
</div>
</div><div class="cell">
<div class="cell_prop">
<input type="text" size="1">
</div>
</div></div>
</div>
</table>
<button type="button" id="recipient_btn" onclick="addRecipient()">Add Recipient</button>
<button type="button" id="start_btn" onclick="start()">Start</button>
</body>
</html>