-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (58 loc) · 2.45 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codeforces Visualizer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<body>
<h1 style="text-align:center;">WeLcome to New Codeforces Visualizer</h1>
<br>
<div id="username" style="width: 25%; margin:0 auto; text-align: center;">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label"><b>Codeforces Handle</b></label>
<input type="text" class="form-control" id="userhandle" aria-describedby="emailHelp" placeholder="MAXXER_17">
<p>Use Username MAXXER_17 for Example </p>
</div>
<button type="submit" class="btn btn-primary" id="handle-btn">Submit</button>
</form>
</div>
<br>
<div style="width: 85%; margin:0 auto;">
<div style="width:50%; float: left;">
<canvas id="myverdict" style=" visibility: hidden; "></canvas>
</div>
<div style="width:50%; float: left;">
<canvas id="mylanguage" style=" visibility: hidden; "></canvas>
</div>
</div>
<div style="width: 60%; margin: 50px auto;">
<canvas id="myproblemlevel" style=" visibility: hidden; margin: 0 auto; width:100%;width: 60%;"></canvas>
</div>
<div style="width: 80%; margin:10px auto; visibility: hidden; text-align: center;" id="userunsolved">
<h2>List of the Unsolved Problems </h2>
<table class="table" id="unsolved-list">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Problem Name</th>
<th scope="col"> Verdict</th>
<th scope="col">Level(A-Z)</th>
<th scope="col">Problem link</th>
</tr>
</thead>
<tbody id="unsolved-list-body">
</tbody>
</table>
</div>
<script src="index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>