-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 905 Bytes
/
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
<!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">
<title>Tela de Login</title>
<link rel="stylesheet" href="css/estilos.css">
</head>
<body>
<div class="page">
<form method="POST" class="formLogin">
<h1> <b>LOGIN</b></h1>
<p>Digite os seus dados de acesso no campo abaixo.</p>
<label for="email">E-mail</label>
<input type="email" placeholder="Digite seu e-mail" autofocus="true" />
<label for="password">Senha</label>
<input type="password" placeholder="Digite seu e-mail" />
<a href="/">Esqueci minha senha</a>
<input type="submit" value="Acessar" class="btn" />
</form>
</div>
</body>
</html>