-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstalking.html
34 lines (31 loc) · 947 Bytes
/
stalking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stalking User ...</title>
<script src="scripts/jq.js"></script>
<script src="scripts/stalking.js"></script>
<link rel="stylesheet" href="styles/stalking_styles.css">
</head>
<body>
<div class="currently-stalking hide">
Currently Stalking <span id="handle"></span>
</div>
<div class="previous-state hide">
<span>Most recent submission and the verdict : </span>
<span id="problem-id"></span>
<span id="verdict"></span>
</div>
<div class="updates">
Update:
<span id="update-msg"></span>
<br>
<span class="small">Any new updates will be shown here! They will clear after 10 seconds</span>
</div>
<img src="assets/loading.gif" width="600px" class="hide" id="loading-gif">
<div class="errors-development hide">
errors
</div>
</body>
</html>