blob: 0cb003564f794c8cc53bf285acbcec90d82da5b0 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<!DOCTYPE html>
<head>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="main.js" defer></script>
<link rel="icon" href="favicon.svg" type="image/svg">
<title>USER</title>
</head>
<body>
<header>
<a href="user/">
<center class="button navbutton">USER</center>
</a>
<a href="user/transfer/">
<center class="button navbutton">TRANSFER</center>
</a>
<a href="user/update/">
<center class="button navbutton">UPDATE INFO</center>
</a>
<a href="user/#" onclick="logout()">
<center class="button navbutton">LOGOUT</center>
</a>
</header>
<div class="page">
<center>
<h2>USER</h2>
</center>
<hr>
<div class="content">
<div id="userinfo" class="halfbox">
<h3>User Info</h3>
<p id="user.name"></p>
<p id="user.id"></p>
</div>
<div id="balance" class="halfbox">
<h3>Tokens Balance</h3>
</div>
<div id="users" class="halfbox">
<h3>Users</h3>
</div>
</div>
</div>
<footer>
<center>
<p>POKO</p>
</center>
</footer>
</body>
</html>
|