summaryrefslogtreecommitdiff
path: root/jimbrella/templates/index.html
blob: 4c3c4d63fa70ced96f88e82d0258d23568a491fc (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
<!DOCTYPE html>
<html>
    <head>
        <title>JI Umbrella</title>
        <link rel="stylesheet" href="/static/jimbrella.css" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
    </head>
    <body>
        <h1>JI Umbrella</h1>

        <div id="container">
            <h3>Click or scan the QR codes below</h3>
            <header>
                <table class="tabs">
                    <tr>
                        <td class="tab"><a href="/admin">Admin</a></td>
                        <!--NYI for regular users-->
                        <!--<td class="tab"><a href="/login">Login</a></td>-->
                        <!--<td class="tab"><a href="/register">Register</a></td>-->
                    </tr>
                </table>
            </header>
            <div class="tile-container">
                <div class="tile blue">
                    <h2 class="banner-heading">Borrow</h2>
                    <a href="https://wj.sjtu.edu.cn/q/aYfDXrqG">
                        <img src="/static/QR_takeaway.png"
                            alt="QR code for borrowing umbrella" class="transparent" />
                    </a>
                </div>
                <div class="tile green">
                    <h2 class="banner-heading">Return</h2>
                    <a href="https://wj.sjtu.edu.cn/q/Ai9Hb2XR">
                        <img src="/static/QR_giveback.png"
                            alt="QR code for returning umbrella" class="transparent" />
                    </a>
                </div>
            </div>
        </div>
    </body>
</html>