-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (47 loc) · 2.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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>Login</title>
<link rel="stylesheet" href="estilos/style_versao_de_curso.css">
<link rel="stylesheet" href="estilos/media-query.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<main>
<section id="login">
<div id="imagem">
<!--Aqui vai a imagem nas CSS-->
</div>
<div id="formulario">
<h1><strong>Login</strong> </h1>
<p>seja Bem-Vindo(a) novamente para acessar sua conta e poder fazer as configurações no seu ambiente </p>
<form action="#" method="post" autocomplete="on">
<div class="campo">
<span class="material-symbols-outlined">
person
</span>
<input placeholder="Seu e-mail" type="email" name="login" id="ilogin" required maxlength="30">
<label for="ilogin">Login</label>
</div>
<div class="campo">
<span class="material-symbols-outlined" class="icones">
vpn_key
</span>
<input required minlength="8" maxlength="30" placeholder="Senha" type="password" name="ipass" id="pass" autocomplete="current-password">
<label for="pass">Senha</label>
</div>
<input type="submit" value="Entrar">
<a href="esqueci_a_senha.html" class="botao">Esqueci a senha
<span class="material-symbols-outlined">
mail
</span>
</a>
</form>
</div>
</section>
</main>
</body>
</html>