blob: 8c9eccc2f0f3ee3115202e96ee775c88c369056b (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>soktdeer wl client</title>
<!-- original name, ik -->
<script type="module" src="main.js"></script>
<link rel="stylesheet/less" type="text/css" href="styles.less" />
<script src="https://cdn.jsdelivr.net/npm/less" ></script>
</head>
<body>
<div class="topbar hidden" id="topbar">
SD-WL
<div>
<button onclick="window.pages.goToPage('main')">home</button>
<button onclick="window.pages.goToPage('settings')" disabled>settings</button>
<button onclick="throw new Error('A')" disabled>log out</button>
</div>
</div>
<div class="main">
</div>
</body>
</html>
|