summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorRobert Zorko <robertz@gurucue.com>2015-09-18 16:08:06 +0200
committerRobert Zorko <robertz@gurucue.com>2015-09-18 16:08:06 +0200
commit81517250ef9a450a3156e7c3960859724757ed73 (patch)
tree489b36ca83d1235ca7e20cac32de531f23273ae8 /index.html
parent7638e350abbe3bc573272f1c44e8daeff1647424 (diff)
divided the login and problem chooser into two different screens
Diffstat (limited to 'index.html')
-rw-r--r--index.html26
1 files changed, 25 insertions, 1 deletions
diff --git a/index.html b/index.html
index 69a8f60..5c5d7b9 100644
--- a/index.html
+++ b/index.html
@@ -62,6 +62,29 @@
<td style="text-align: right;">Password:</td>
<td><input type="password" name="password" id="password"></td>
</tr>
+ <!--<tr>
+ <td style="text-align: right;">Problem:</td>
+ <td>
+ <select name="problem_group" id="problem_group" style="min-width: 10em;">
+ </select>
+ <select name="problem" id="problems" style="min-width: 10em;">
+ </select>
+ </td>
+ </tr>-->
+ <tr>
+ <td colspan="2" style="text-align: center;">
+ <button type="button" id="submit">Login</button>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+
+ <div id="screen_language" style="text-align: center; display: none;">
+ <h1>CodeQ Select Problem</h1>
+ <hr>
+ <table style="margin: 0 auto;">
+ <tbody>
<tr>
<td style="text-align: right;">Problem:</td>
<td>
@@ -73,7 +96,7 @@
</tr>
<tr>
<td colspan="2" style="text-align: center;">
- <button type="button" id="submit">Login</button>
+ <button type="button" id="submit_problem">Select</button>
</td>
</tr>
</tbody>
@@ -136,6 +159,7 @@
<script src="js/codeq/prolog.js"></script>
<script src="js/codeq/python.js"></script>
<script src="js/codeq/login.js"></script>
+ <script src="js/codeq/language.js"></script>
<script src="js/codeq/startup.js"></script>
</body>
</html>