-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.77 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.77 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="media-query.css">
<link rel="shortcut icon" href="key.png" type="image/x-icon">
<title>Login</title>
</head>
<body>
<main>
<section id="login">
<div id="imagem">
</div>
<div id="formulario">
<h1>Login</h1>
<p>Seja bem-vindo(a) novamente. Faça login para acessar sua conta e poder fazer as configurações no seu ambiente.</p>
<form action="login.php" method="post" autocomplete="on">
<div class="campo">
<span class="material-icons">person</span>
<input type="email" name="login" id="ilogin" placeholder="seu e-mail" autocomplete="email" required maxlength="30">
<label for="ilogin">Login</label>
</div>
<div class="campo">
<span class="material-icons">vpn_key</span>
<input type="password" name="senha" id="isenha" placeholder="sua senha" autocomplete="current-password" required minlength="8" maxlength="20">
<label for="isenha">Senha</label>
</div>
<input type="submit" value="Entrar">
<a href="esqueci.html" class="botao">Esqueci a senha <i class="material-icons">mail</i>
</a>
</form>
</div>
</section>
</main>
</body>
</html>