-
Notifications
You must be signed in to change notification settings - Fork 0
/
path.html
37 lines (37 loc) · 1.07 KB
/
path.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<nav>
<a href="index.html">Main</a>
<a href="create.html">Create</a>
<a href="path.html" style="color:#4CAF50">Shortest Path</a>
</nav>
<div>
<form id="shortestPathForm">
<table id="pathInputTable">
<tr>
<th id="StartingPointText">Starting Point</th>
<th id="EndPointText">EndPoint</th>
</tr>
<tr>
<td><input placeholder="e.g. A" type="text" id="StartingPointInput" required></td>
<td><input placeholder="e.g. B" type="text" id="EndPointInput" required></td>
</tr>
</table>
<button type="button" id="pathSubmit">Find Shortest Path</button>
</form>
</div>
<div id="ShowShortestPathDiv">
<h2> Show Shortest Path:</h2>
<div id="pathDiv"></div>
</div>
<script src="js/graph.js"></script>
<script src="js/dijkstra.js"></script>
<script src="js/path.js"></script>
</body>
</html>