-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_base.html
59 lines (47 loc) · 2.6 KB
/
index_base.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
<!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.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" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<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">
<img src="imagens/pexels-ana-benet-8243369.jpg" alt="">
</div>
<div id="formulario">
<h1><strong>Login</strong> </h1>
<p>Seja Ben-Vindo(a) novamente para acessar sua conta e poder fazer as configurações no seu ambiente </p>
<form action="#" method="post" autocomplete="on">
<p class="icons">
<span class="material-symbols-outlined"><strong>person</strong> </span>
<label for="usuario"></label>
<input placeholder="usuário" type="text" name="iusuario" id="usuario" autocomplete="username">
</p>
<div>
<p class="icons">
<span class="material-symbols-outlined"><strong>key</strong></span>
<label for="pass"></label>
<input placeholder="Senha" type="password" name="ipass" id="pass" autocomplete="current-password">
</p>
<p class="icons">
<input class="enviar_limpar" type="submit" value="Enviar">
</p>
<p class="icons">
<input class="enviar_limpar" type="reset" value="Limpar">
</p>
</div>
</form>
</div>
</section>
</main>
</body>
</html>