-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 1.95 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 1.95 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<title>Formulário de Cadastro e Login</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="main">
<input type="checkbox" id="chk" aria-hidden="true" />
<div class="signup">
<form
action="https://formsubmit.co/fernandodiass.dev@gmail.com"
method="post"
>
<label for="chk" aria-hidden="true">Cadastre-se</label>
<input
type="text"
name="username"
placeholder="Nome de usuário"
required
/>
<input
type="email"
name="email"
id="email"
placeholder="E-mail"
required
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
/>
<input
type="password"
name="password"
placeholder="Senha"
id="password"
required
/>
<input
type="password"
name="confirmPassword"
placeholder="Confirmar senha"
id="confirmPassword"
required
/>
<button type="submit">Cadastrar</button>
</form>
</div>
<div class="login">
<form action="/">
<label for="chk" aria-hidden="true">Login</label>
<input
type="text"
name="loginUsername"
placeholder="E-mail ou Nome de usuário"
required
/>
<input
type="password"
name="loginPassword"
placeholder="Senha"
required
/>
<button type="submit">Entrar</button>
<p>Ainda não tem uma conta? <a href="#">Crie uma conta</a>.</p>
</form>
</div>
</div>
</body>
</html>