summaryrefslogtreecommitdiff
path: root/client/orders.html
blob: 3c5346dfa6f076fc0bd1892938af019c35da401e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>

<html lang="nl">
    <head>
        <meta charset="utf-8">

        <title>Sogyo Adventure</title>
        <meta name="description" content="The ticket shop for Sogyo employees">

        <link rel="shortcut icon" type="image/jpg" href="img/logo_sogyo_rgb_199x200-1.jpg"/>
        <link rel="stylesheet" href="style/main.css">
    </head>

    <body>

        <header id="logo-header">
            <img src="img/logo_sogyo_rgb_199x200-1.jpg">
        </header>
        <header id="mainheader">
            Sogyo Adventure
        </header>
        <nav>
            <a id="home" href="index.html">
                Home
            </a>
            |
            <a id="map" href="map.html">
                Discover
            </a>
            |
            <a id="shoppingbasket" href="shoppingbasket.html">
                Shopping basket <div class="badge">0</div>
            </a>
            |
            <a id="myorders" href="orders.html">
                My orders
            </a>
            |
            <a id="admin" href="admin.html">
                Admin
            </a>
        </nav>

        <main>


        </main>

        <template id="ticket">
            <article>
            <div class="parkname"></div>
            <div class="orderdescription">
                <div class="numberofadults"></div>
                <div class="numberofkids"></div>
                <div class="price"></div>
            </div>
            </article>
        </template>


        <script type="module" src="src/myorders.js"></script>
    </body>
</html>