-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 2.3 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
<!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">
<link rel="stylesheet" href="./src/styles/globalStyles.css">
<link rel="stylesheet" href="./src/styles/buttons.css">
<link rel="stylesheet" href="./src/styles/inputs.css">
<link rel="stylesheet" href="./src/styles/login.css">
<script defer type="module" src="./src/scripts/login.js"></script>
<title>Petinfo - Login</title>
</head>
<body>
<main class="container">
<section class="login-title">
<h2 class="font1-600">Petinfo</h2>
<h2 class="font1-600"><span>Amor</span> e <span>carinho</span> por meio do conhecimento</h2>
<div>
<p class="font4-400">Todas as informações para melhorar a vida do seu pet em um só lugar</p>
<img src="./src/images/img-login.png" alt="imagens de animais de estimação">
</div>
</section>
<section class="login-form">
<h3 class="font3-500">Login</h3>
<form>
<div>
<label class="font4-500" for="email">Usuário</label>
<input required class="font4-400" type="email" id="email" placeholder="Digite seu usuário aqui">
</div>
<div class="">
<label class="font4-500" for="password">Senha</label>
<input required class="font4-400" type="password" id="password" placeholder="Digite sua senha aqui">
<span id="span-alert" class="font5-400"></span>
</div>
<button id="btn-login" class="btn-disabled">Acessar</button>
<button id="btn-spinner" class="btn-brand">
<img src="./src/images/spinner.png" alt="carregando">
</button>
<div>
<p class="font5-500">Ainda não possui conta?</p>
<p class="font5-400">Clicando no botão abaixo, você pode se cadastrar rapidamente</p>
</div>
</form>
<a href="./src/pages/register.html">
<button class="btn-clean">Cadastrar</button>
</a>
</section>
</main>
</body>
</html>