diff options
author | Aleš Smodiš <aless@guru.si> | 2015-08-24 19:17:43 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-08-24 19:17:43 +0200 |
commit | 21d213dcff1367c16dc0c3f6585b8e35d7c2f0c7 (patch) | |
tree | ea7164cde0b4ad7ab42b94b291f690813c22b65b /index.html | |
parent | 42ee67384fa52bc3db4716ffb9aff2cd0dda3f5e (diff) |
Introduced the Q promises library, created a basic login page to test prolog examples, and started tying the terminal and editor activity to the REST services.
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> |