-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.04 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.04 KB
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>Embouteillage</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bttn.min.css">
</head>
<body>
<!-- Include Scala.js compiled code -->
<h2 style="text-align: center"> Embouteillage Traffic Simulator </h2>
<hr>
<div id="svg-container">
</div>
<div id="controls-container">
</div>
<br>
<br>
<br>
<div>
<form action="https://www.billdingsoftware.com/">
<input type="submit"
class="bttn-primary OutterStyles_TrafficStyles-standardButton bttn-simple bttn-lg lightly-padded"
value="Go back to BilldingSoftware">
</form>
</div>
<script type="text/javascript" src="target/scala-2.13/traffic-opt/main.js"></script>
<script type="text/javascript" src="target/scala-2.13/traffic-opt/main.js.map"></script>
<script>
// console.log("Doing js with requestNextAnimation!");
Client.run();
</script>
</body>
</html>