-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 2.12 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
<!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>Kenzie Habit</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./src/css/reset.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/page.login.css">
</head>
<body>
<section>
<aside>
<h2 class="textoLogin">KenzieHabit</h2>
<h3>If you are going to use <u>passage</u> of Lorem Impsum</h3>
<p>you need to be sure there isn't anything</p>
</aside>
<section class="container">
<h2 class="tituloLogin">Login</h2>
<form>
<label for="email">Usuário</label>
<div class="sairBotaoUsuario">
<!--<input type="email" id="email" name="email" placeholder="[email protected]">-->
<!--<button class="sairUsuario" type="button">X</button>-->
</div>
<label for="password">Senha</label>
<div class="sairBotaoSenha">
<!--<input type="password" id="password" name="password" placeholder="Digitar sua senha">-->
<!--<button class="sairSenha">X</button>-->
<div class="divErro"></div>
</div>
<!--<button>Entrar</button>-->
</form>
</section>
</section>
<script type="module" defer src="./src/scripts/page.login.script.js"></script>
</body>
</html>