-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Payment Settlement App</title>
<link rel="icon" type="image/png" href="./images/logo.png" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/5548f5ed00.js"
crossorigin="anonymous"
></script>
<script
type="text/javascript"
src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"
></script>
<link rel="stylesheet" href="./style.css" />
<script src="./heap.js"></script>
<script src="./script.js" type="module"></script>
</head>
<body>
<nav
class="navbar navbar-light"
style="
font-size: 30px;
font-family: Comic Sans MS;
background-color: whitesmoke;
"
>
<img
src="./images/logo.png"
width="60"
height="50"
class="d-inline-block align-top"
alt=""
/>
Payment Settlement App
</nav>
<div id="container">
<div id="mynetwork"></div>
<div id="container2">
<span
id="temptext"
style="width: 100%; text-align: center; font-size: x-large"
>
Click on solve to get Solution !!
</span>
<div id="mynetwork2" style="display: none"></div>
</div>
</div>
<div>
<br />
<button type="button" class="btn btn-danger" id="generate-graph">
Get New Problem
</button>
<br />
<button type="button" class="btn btn-success" id="solve">Solve</button>
<br />
<p
style="font-size: 20px; font-family: Comic Sans MS; text-align: center"
>
<a href="https://github.com/MinusRF/Payment-Settlement-App"
>Github Link to Project</a
>
</p>
</div>
</body>
</html>