summaryrefslogtreecommitdiff
path: root/index.html
blob: 806ab9622dc9304237951de640ce421def0552b0 (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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Unofficial York University Course Query</title>
        <script src="script.js"></script>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="container">
            <noscript>
                <div>
                    <p>Sorry, this doesn't do anything without JS.</p>
                </div>
            </noscript>
            <div>
                Sample queries:
                <span id="sample-queries">
                    <a href="#" class="sample-query">biol</a>,
                    <a href="#" class="sample-query">SB/ACTG 2010 3.00</a>,
                    <a href="#" class="sample-query">ADMS 1000 3</a>,
                    <a href="#" class="sample-query">LE EECS 3000 Cr=3.00 A Term:F Professional Practice in Computing</a>
                </span>
            <div>
                <form method="GET">
                    <table>
                        <tr>
                            <td><input type="text" id="input"></td>
                            <td><select id="sessions" size="2"></select></td>
                        </tr>
                    </table>
                </form>
            </div>
            <hr>
            <div>
                <span id="error"></span>
            </div>
            <div id="link-container">
                <p><a id="link" rel="noopener noreferrer">Course Query</a></p>
            </div>
            <div>
                <span id="warning"></span>
            </div>
        </div>
    </body>
</html>