-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
51 lines (44 loc) · 1.48 KB
/
login.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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link href="https://fonts.googleapis.com/css?family=Archivo|Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="cadastro-style.css">
<script src="login-script.js" defer ></script>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<title>Spotlight</title>
</head>
<body>
<header>
<nav class="navbar transition">
<div class="logo">
<a href="">Spotlight</a>
</div>
<div class="menu">
<a href="./index.html#ranking">Ranking</a>
<a href="./index.html#conheca">Conheça</a>
<a href="./cadastro.html">Avalie</a>
</div>
</nav>
</header>
<main>
<section class="boxContent">
<div class="inpt">
<p>E-mail</p>
<input type="email" name="" id="email">
</div>
<div class="inpt">
<p>Senha</p>
<input type="password" name="" id="senha">
</div>
<div class="inptEnviar">
<input type="button" value="Enviar" class="enviar">
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>