diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 44 |
1 files changed, 27 insertions, 17 deletions
@@ -8,28 +8,38 @@ </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"> - <input type="text" id="input" size="60"> - <select id="terms" size=3></select> + <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> - <table> - <thead> - <th>Faculty</th> - <th>Dept./Subj.</th> - <th>Number</th> - <th>Credits</th> - </thead> - <tbody> - <td id="faculty"></td> - <td id="dept"></td> - <td id="crsn"></td> - <td id="cred"></td> - </tbody> - </table> - <a id="link">Course Query</a> + <span id="warning"></span> </div> </div> </body> |