-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
48 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="login.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<!-- Menu -->
<nav class="navbar navbar-light bg-light">
<a class="nav_voltar" href="home.html">
<img src="imagens/botao_voltar.svg" width="35" height="35" alt="voltar">
</a>
<a class="nav_fechar" href="">
<img src="imagens/botao_fechar.svg" width="35" height="35" alt="fechar">
</a>
</nav>
<br><br><br><br>
<form>
<fieldset class="login">
<div>
<center>
<label class="titulo_form">Login</label>
</center>
</div>
<div class="texto">
<br> <br>
<label>Digite o seu e-mail:</label>
<br>
<input type="email" name="email" placeholder="Digite o seu e-mail" class="class_email" required>
<br><br>
<label>Senha:</label>
<br>
<input type="password" name="senha" placeholder="Digite a sua senha" class="class_senha" required>
<br><br>
</div>
<center>
<button class="botao_entrar">Entrar</button>
</center>
</fieldset>
</form>
</body>
</html>