-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (35 loc) · 1.31 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
38
39
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Login - Rede Social</title>
</head>
<body>
<div id="interface">
<div id="logo">
<h1>Rede Social</h1>
</div>
<div id="areaLogin">
<div id="boxLogin">
<form>
<div id="areaCampos">
<!-- <input class="campos" type="text" placeholder="Nome do Usuário"> -->
<input class="campos" type="email" placeholder="e-mail">
<input class="campos" type="password" placeholder="Senha">
<div id="manterConectado">
<input type="checkbox" id="conectado">
<label for="conectado">Manter conectado</label>
</div>
<input type="submit" value="Entrar" id="botao">
<p>É novo aqui?<a href="#"> Criar conta</a></p>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>