-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisciplinas.html
29 lines (26 loc) · 1.01 KB
/
disciplinas.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
<!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/disciplinas.css" type="text/css">
</head>
<body>
<div id="title">UFCG Cursos Database</div>
<div id="navbar">
<ul id="navbarList">
<li><a href="./disciplinas.html">Disciplinas</a></li>
<li><a href="./" id="loginLogoutButton">Login</a></li>
</ul>
</div>
<h1 id="searchIntro">Pesquise aqui a disciplina desejada</h1>
<div id="searchBox">
<input id="searchInput" type="text" placeholder="Digite aqui sua busca (ou deixe vazio para pesquisar todas)">
<button id="searchButton" type="submit">Buscar</button>
</div>
<div id="searchResultBox"><search-result-comp id="searchResult"></search-result-comp></div>
<div id="footer"></div>
<script type="module" src="js/disciplinas.js"></script>
</body>
</html>