-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (76 loc) · 2.19 KB
/
index.html
File metadata and controls
85 lines (76 loc) · 2.19 KB
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
85
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link rel="shortcut icon" href="img/icon.png" type="image/x-icon">
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<!-- CSS -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- JS -->
<script src="js/validation.js" defer></script>
<script src="js/show-password.js" defer></script>
</head>
<body>
<main id="main">
<!-- form -->
<form class="form">
<div class="input-container">
<div class="input">
<input
type="text"
name="email"
id="email"
required
/>
<label for="email">Email:</label>
</div>
<span class="message"></span>
</div>
<div class="input-container">
<div class="input">
<input
type="password"
name="password"
id="password"
required
/>
<label for="password">Senha:</label>
<span
class="material-symbols-outlined iconOfPassword"
id="visible"
aria-hidden="true"
tabindex="0"
>
visibility
</span>
<span
class="material-symbols-outlined iconOfPassword"
id="invisible"
aria-hidden="true"
tabindex="0"
>
visibility_off
</span>
</div>
<span class="message"></span>
</div>
<button
type="submit"
id="submit"
aria-label="Botão de entrar na plataforma"
>
Entrar
</button>
</form>
<!-- success message -->
<dialog id="success-modal">
Login efetuado com sucesso!
</dialog>
</main>
</body>
</html>