-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathranking.html
44 lines (40 loc) · 1.32 KB
/
ranking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UCDb - classificação e review de cursos</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/ranking.css" type="text/css">
</head>
<body>
<div id="title">UFCG Cursos Database</div>
<div id="navbar">
<ul>
<li><a href="./disciplinas.html">Disciplinas</a></li>
<li><a href="./" id="loginLogoutButton">Logout</a></li>
<li><a href="./ranking.html">Ranking</a></li>
</ul>
</div>
<h1 id="subjectName">Ranking de disciplinas</h1>
<div id="rankTypeBox">
<div>
Ordenar por
<select id="type">
<option value="likes">Likes</option>
<option value="comments">Comentários</option>
<option value="commentsPlusLikes">Likes + Comentários</option>
</select>
em ordem
<select id="desc">
<option value="true">Decrescente</option>
<option value="false">Crescente</option>
</select>
</div>
<div id="commentIcon">➤</div>
</div>
<div id="subjects">
</div>
<div id="footer"></div>
<script type="module" src="js/ranking.js"></script>
</body>
</html>