diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..803e758 --- /dev/null +++ b/index.html @@ -0,0 +1,37 @@ +<html> +<head> + <title>CodeQ Login</title> +</head> +<body> +<h1>CodeQ Login</h1> +<hr> +<table> + <tbody> + <tr> + <td>Username:</td> + <td><input type="text" name="username" id="username"></td> + </tr> + <tr> + <td>Password:</td> + <td><input type="password" name="password" id="password"></td> + </tr> + <tr> + <td>Problem:</td> + <td> + <select name="problem_group" id="problem_group"> + </select> + <select name="problem" id="problems"> + </select> + </td> + </tr> + <tr> + <td colspan="2"> + <button type="button" id="submit">Login</button> + </td> + </tr> + </tbody> +</table> +<script src="js/jquery/jquery-1.11.3.js"></script> +<script src="js/codeq/login.js"></script> +</body> +</html> |