diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 29 |
1 files changed, 22 insertions, 7 deletions
@@ -62,25 +62,39 @@ <td style="text-align: right;">Password:</td> <td><input type="password" name="password" id="password"></td> </tr> - <!--<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 Language</h1> + <hr> + <table style="margin: 0 auto;"> + <tbody> + <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 name="language" id="language" style="min-width: 10em;"> + <option value="prolog">prolog</option> + <option value="python">python</option> </select> </td> - </tr>--> + </tr> <tr> <td colspan="2" style="text-align: center;"> - <button type="button" id="submit">Login</button> + <button type="button" id="submit_language">Select</button> </td> </tr> </tbody> </table> </div> - <div id="screen_language" style="text-align: center; display: none;"> + <div id="screen_problem" style="text-align: center; display: none;"> <h1>CodeQ Select Problem</h1> <hr> <table style="margin: 0 auto;"> @@ -160,6 +174,7 @@ <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/problem.js"></script> <script src="js/codeq/startup.js"></script> </body> </html> |