31 lines
847 B
HTML
31 lines
847 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>underBBS</title>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="shortcut icon" href="./favicon.png"/>
|
|
<link href="./style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<noscript><div id="noscript_container">
|
|
JS app lol
|
|
</div>
|
|
</noscript>
|
|
<div id="map"></div>
|
|
|
|
<div id="err_wrapper" style='display:none'><button id="err_close" onclick="closeErr()">x</button><div id="err_div"></div></div>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#" onclick="showSettings()">settings</a></li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
<button id="connectbtn" onclick="connect()">Connect</button>
|
|
<div id="tabbar"></div>
|
|
<div id="tabcontent"></div>
|
|
</main>
|
|
</body>
|
|
<script src="./main.js" type="application/javascript"></script>
|
|
</html>
|