-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (60 loc) · 2.62 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta name="author" content="@joyzinhw">
<meta name="description" content="codpet, um site para cadrastro de animais">
<meta name="keywords" content="sites, web, animais, cadrastro, adoção, localizacao">
<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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css" integrity="sha512-10/jx2EXwxxWqCLX/hHth/vu2KY3jCF70dCQB8TSgNjbCVAC/8vai53GfMDrO2Emgwccf2pJqxct9ehpzG+MTw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/css/style-1.css">
<link rel="short icon" href="assets/img/icone.png">
<link rel="manifest" href="manifest.json">
<link rel="pwabuilder" href="/pwabuilder-sw.js">
<title>login</title>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register("/pwabuilder-sw.js")
}
</script>
</head>
<body>
<nav>
<div class="logo">
<a href="index.html" aria-label="link do icone de inicio">
<i class="fa-sharp fa-solid fa-house"></i>
</a>
</div>
<div class="menu-btn">
<i class="fa fa-bars fa-2x" onclick="menuShow()"></i>
</div>
<ul>
<li> <a href="pages/ajuda.html"> AJUDA</a> </li>
<li> <a href="pages/sobre.html"> SOBRE</a> </li>
</ul>
</nav>
<section class="area-login">
<div class="login"> <!-- div principal-->
<div class="text">
<h1>Login</h1>
</div>
<div class="img"><!--div da logo-->
<img src="assets/img/www.png" aria-label="icone do gatinho"/>
</div>
<form>
<label for="email"></label>
<input id="email" type="email" name="email" placeholder="Digite o seu e-mail" required maxlength="40" autofocus>
<label for="password"></label>
<input id="password" type="password" name="password" placeholder="Digite a sua senha" required maxlength="8" minlength="8" autofocus>
<input type="submit" value="Entrar" onclick="Logar(); return false">
</form>
<br>
<p>Ainda não possui uma conta?</p> <!--link para conta-->
<p><a href="pages/registro.html">Crie uma conta!</a></p>
<p><a href="pages/esqueceu.html">Esqueci a senha</a></p>
</div>
</section>
<script src="assets/js/main.js"></script>
</body><!-- corpo-->
</html>