-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 944 Bytes
/
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
<!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.12/traffic-jsdeps.js"></script>
<script type="text/javascript" src="target/scala-2.12/traffic-fastopt.js"></script>
<script>
// console.log("Doing js with requestNextAnimation!");
Client.run();
</script>
</body>
</html>