-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
44 lines (43 loc) · 1.66 KB
/
popup.html
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
38
39
40
41
42
43
44
<html>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<head>
<title>Codeforces Extension</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div id="container">
<center><h1 class="text-muted">Profile Information</h1>
<table class="table table-bordered" class="table table-sm" id="fullName"></table>
</center>
</div>
<div id="contests">
<center><h1 class="text-muted" id="idHeader">Future Contests</h1></center>
<table class="table table-striped" id="contestList">
</table>
</div>
<div id="questions">
<center><h1 class="text-muted">Questions</h1>
<div class="cont">
<label for="AT"> Add Tag:
<input id = "questionKeyword" value style="width: 9.3rem; margin-left: 6px;"type="text">
</label>
</div>
<div class="cont">
<label for="Difficulty" idx="difficulty" >Difficulty:
<span style="float: right">
<input id="minDifficulty" value type="text" style=" width: 4rem; height: 1.8rem;margin-left: 7px;
">
—
<input id="maxDifficulty" value type="text" style=" width: 4rem; height: 1.8rem;
">
</span>
</label>
</div>
<button class="btn btn-success" id="questionButton" >Apply</button>
<div id="questionList">
</div>
</center>
</div>
<script src="popup.js"></script>
</body>
</html>