blob: 803e75894016c4a838c9678a9dba3ecd485931e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>
|