-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathperfildisciplina.html
31 lines (29 loc) · 973 Bytes
/
perfildisciplina.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Perfil de Disciplina</title>
<link rel="stylesheet" href="./styles/perfildisciplina.css">
</head>
<body>
<nav-bar login></nav-bar>
<main>
<h1 id="id"></h1>
<section id="likes">
<span id="l">Likes: <span id="nLikes"></span></span>
<button id="bttnLike"></button>
</section>
<h2>Comentários</h2>
<div>
<textarea id="inputComment" placeholder="Deixe seu comentário aqui"></textarea>
<button id="bttnComment" type="submit">Comentar</button>
</div>
<section class="comments" id="board">
<ul id="listComments"></ul>
</section>
</main>
<script type="module" src="../controllers/perfilDisciplinas.js"></script>
</body>
</html>