-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 2.16 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title>
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div class="banner">
<div class="container-registration">
<form class="form-registration" method="post">
<p>Faça seu cadastro</p>
<label for="name">
Nome*:
<input type="text" name="name" id="name" required placeholder="Digite o nome" oninput="this.setCustomValidity('')" oninvalid="this.setCustomValidity('preencha o nome')" />
</label>
<label for="email">
E-mail*:
<input type="email" name="email" id="email" required placeholder="Digite o e-mail" oninput="this.setCustomValidity('')" oninvalid="this.setCustomValidity('preencha o email')" />
</label>
<label for="password">
Senha*:
<input type="password" name="password" id="password" required placeholder="Digite a senha"
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}"
title="A senha deve conter ao menos uma letra minúscula, uma letra maiúscula, um número e pelo menos 8 caracteres" oninput="this.setCustomValidity('')" oninvalid="this.setCustomValidity('Digite uma senha digna de ser hackeada')"/>
</label>
<label for="password">
Confirme a Senha*:
<input type="password" name="password" id="password" required placeholder="Confirme a senha" oninvalid="this.setCustomValidity('Digite uma senha digna de ser hackeada')" />
</label>
<button class="button" type="submit">continuar</button>
</form>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta/dist/vanta.birds.min.js"></script>
<script>
VANTA.BIRDS({
el: 'body',
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
backgroundColor: 0xf7f7f7,
birdSize: 1.20,
separation: 22.00,
backgroundAlpha: 0.00
})
</script>
</html>