forked from Simnation/Main
22 lines
715 B
HTML
22 lines
715 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="index.css">
|
||
|
<script src="index.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<textarea id="clipboard"></textarea>
|
||
|
<div id="content">
|
||
|
<span>Top Speed: </span><span id="top-speed"></span><br>
|
||
|
<span>Top Acceleration: </span><span id="top-accel"></span><br>
|
||
|
<span>Top Deceleration: </span><span id="top-decel"></span><br>
|
||
|
<div id="handling" style="display: none">
|
||
|
<button onclick="copyHandling()">Copy Handling</button>
|
||
|
<button onclick="post('resetStats')">Reset Stats</button>
|
||
|
<div id="handling-fields"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|