-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (47 loc) · 2.29 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="public/favicon.svg" rel="shortcut icon" type="image/svg">
<link href="src/styles.css" rel="stylesheet">
<title>Ceap - Login</title>
</head>
<body>
<main>
<image id="logo-icon" src="public/assets/logo-icon.svg" alt="" width="80" height="80" />
<section id="section-login-default">
<h1>Login</h1>
<form action="/">
<div class="email-container">
<label for="email-input">Email</label>
<input type="email" name="email-input" id="email-input" placeholder="[email protected]" required>
</div>
<div class="password-container">
<label for="password-input">Senha</label>
<div class="password-eye-container">
<input type="password" name="password-input" id="password-input" placeholder="••••••••••••••••" required>
<span onclick="togglePasswordVisibility()" class="password-eye">👁</span>
</div>
</div>
<button type="submit">Continuar</button>
</form>
</section>
<button id="toggle-login-type" class="type-login-default" type="button" onclick="toggleLogin()">
Área de visitantes
<image id="arrow-icon" src="public/assets/arrow.svg" alt="" width="22" height="22" />
</button>
<section id="section-login-voucher">
<h2>Área de visitantes</h2>
<form action="/">
<div class="voucher-container">
<label for="voucher-input">Voucher</label>
<input type="text" name="voucher-input" id="voucher-input" placeholder="abc-1234-defg-567" required>
</div>
<button type="submit">Continuar</button>
</form>
</section>
</main>
</body>
<script src="src/script.js" type="text/javascript"></script>
</html>