-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (35 loc) · 1.44 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
<!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/index.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="./index.html">Login</a></li>
</ul>
</div>
<div id="representativeImage">
<img src="http://www.funcage.com/blog/wp-content/uploads/2013/11/Random-Photoshopped-Pictures-006.jpg" id="representative-image-file"/>
</div>
<div>
<form id="loginForm">
<h1 id="loginIntro">Faça login utilizando <br>seu email</h1>
<input id="emailInput" type="email" placeholder="[email protected]" required>
<input id="passwordInput" type="password" placeholder="abc1234" required>
<button id="loginButton" type="submit">Entrar</button>
<h1 id="signupIntro">ou se junte como um<br>novo usuário</h1>
<input id="firstNameInput" type="text" placeholder="Primeiro nome">
<input id="lastNameInput" type="text" placeholder="Último nome">
<button id="signupButton">Cadastrar-se</button>
</form>
</div>
<div id="footer"></div>
<script type="module" src="js/index.js"></script>
</body>
</html>