-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
122 lines (116 loc) · 4.82 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<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>CF ACR Finder</title>
<link href="CFAir.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="">
<img src="https://cdn.iconscout.com/icon/free/png-256/code-forces-3521352-2944796.png" alt="" width="30"
height="24" class="d-inline-block align-text-top" />
CF ACR Finder
</a>
<a href="https://github.com/Aniket-debug/cfairfinder"><button class="btn btn-outline-success"
type="button">Contribute</button></a>
</div>
</nav>
<hr />
<div class="fheading">
<h3>CodeForces All Country Rank Finder</h3>
<p>
Get your All Country Rank after the completion of CodeForces contests
</p>
</div>
<hr />
<div class="row row-cols-1 row-cols-sm-2">
<div class="col">
<form class="formClass">
<div>
<p class="colp">Get ACR</p>
</div>
<div class="mb-3">
<label for="username" class="form-label">Enter CF Username</label>
<input type="text" class="form-control" id="username" placeholder="Username" required />
</div>
<div class="mb-3">
<label for="contest_id" class="form-label">Enter Contest Link</label>
<input type="text" class="form-control" id="contest_id" placeholder="https://codeforces.com/contest/"
required />
</div>
<div class="btns">
<button type="button" class="btn btn-outline-primary" id="find" onclick="find_ACR()">
Find ACR
</button>
</div>
<div class="error">
<p id="out"></p>
</div>
</form>
</div>
<div class="col">
<div>
<p class="colp">Not Found your Rank?</p>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Reason #1
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Entered User's <strong>Global Rank</strong> is not under
<b>10000</b>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Reason #2
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Sometimes it took bit longer so wait for no more than a minute
if it still loading then reload the site and try again.
</div>
</div>
</div>
</div>
</div>
</div>
<hr />
<div class="social">
<div>
<p>Social Links</p>
<p></p>
</div>
<a href="https://github.com/Aniket-debug" target="_blank"><img id="github"
src="https://image.freepik.com/free-icon/github-logo-silhouette-in-a-square_318-54633.jpg" /></a>
<a href="https://www.linkedin.com/in/aniket-agarwal-226a551b1/" target="_blank"><img id="linkedin"
src="https://tse2.mm.bing.net/th?id=OIP.8IxSTRR_RjmMtUAT7nAT7gHaHa&pid=Api&P=0" /></a>
</div>
<div class="star">
Got your rank? <a href="https://github.com/Aniket-debug/cfairfinder">Give our repo a star.</a>
</div>
</div>
<script src="find.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>