aboutsummaryrefslogtreecommitdiff
path: root/quotes/public/index.html
blob: ae95468df5a4a45b4eadc283b3c4e7ce66eb6699 (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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <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" />

        <title>Zitate</title>
    </head>
    <body>
        <div class="pure-menu pure-menu-horizontal">
            <a href="/" class="pure-menu-item pure-menu-link">Home</a>
            <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a>
        </div>

        <main>
            <form class="pure-form pure-form-stacked" action="api/add" method="post">
                <fieldset>
                    <legend>Zitate</legend>
                    <label for="author">Autor</label>
                    <select name="author" id="author" required></select>
                    <label for="quote">Zitat</label>
                    <input name="quote" type="text" id="quote" placeholder="Zitat" required />
                    <button type="submit" class="pure-button pure-button-primary">Hinzufügen</button>
                </fieldset>
            </form>

            <button id="open_TGI13.1">TGI13.1</button>
            <ul style="display: none" id="TGI13.1"></ul>
            <button id="open_TGI13.2">TGI13.2</button>
            <ul style="display: none" id="TGI13.2"></ul>
            <button id="open_TGM13.1">TGM13.1</button>
            <ul style="display: none" id="TGM13.1"></ul>
            <button id="open_TGM13.2">TGM13.2</button>
            <ul style="display: none" id="TGM13.2"></ul>
            <button id="open_TGTM13.1">TGTM13.1</button>
            <ul style="display: none" id="TGTM13.1"></ul>
            <button id="open_teacher">Lehrer</button>
            <ul style="display: none" id="teacher"></ul>
        </main>

        <script src="script.js" charset="utf-8"></script>
    </body>
</html>