aboutsummaryrefslogtreecommitdiff
path: root/superadmin/public/index.html
blob: 00856305e6f205fd89a9cd27a1c2c8751c9e2ece (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <title>Super Admin</title>
        <link
                rel="stylesheet"
                href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
                integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ"
                crossorigin="anonymous"
        />
        <link rel="stylesheet" href="style.css" type="text/css" media="all" />
    </head>
    <body>
        <header class="pure-menu pure-menu-horizontal">
            <a href="/" class="pure-menu-item pure-menu-link">Home</a>
            <a href="/admin" class="pure-menu-item pure-menu-link">Admin</a>
        </header>
        <main>
            <h1>Super-Duper-Admin</h1>
            <div>
                <h3>Update code</h3>
                <button class="pure-button pure-button-primary" id="pull-button">Pull code</button>
                <div id="pull-response"></div>
            </div>
            <div>
                <h3>SQL Select</h3>
                <form class="pure-form" id="query-form">
                    <textarea required placeholder="SELECT something"></textarea>
                    <button type="submit" class="pure-button pure-button-primary">Query</button>
                </form>
                <table id="query-response"></table>
            </div>
        </main>
        <script src="script.js"></script>
    </body>
</html>