summaryrefslogtreecommitdiff
path: root/src/user.html
blob: 00bfad66336b6e341b27b1cbe5348ad31b4a73c0 (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
<!DOCTYPE html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="main.css">
        <script src="main.js" defer></script>
    </head>
    <body onload="user()">
        <header>
            <a href="/user.html">
                <center class="button navbutton">USER</center>
            </a>
            <a href="/transfer.html">
                <center class="button navbutton">TRANSFER</center>
            </a>
            <a href="#" onclick="logout()">
                <center class="button navbutton">LOGOUT</center>
            </a>
        </header>
        <div id="page">
            <center>
                <h2>USER</h2>
            </center>
            <hr>
            <div id="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>