-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
83 lines (64 loc) · 2.31 KB
/
cadastro.html
File metadata and controls
83 lines (64 loc) · 2.31 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do App</title>
<!-- SweetAlert = biblioteca de alerta -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- ---------------- estilos compartilhados entre login e signup ---------------- -->
<link rel="stylesheet" href="./styles/acesso.css" />
</head>
<body>
<div id="isLoading">
<span></span>
</div>
<div class="left">
<div class="form-header">
<p>To-Do App</p>
</div>
<img src="./assets/pessoa-signup.png" alt="" />
</div>
<div class="right">
<div class="ingressar">
<p>Já possui conta?</p>
<a href="index.html">Acesse aqui</a>
</div>
<section class="form-right">
<form>
<div class="form-control">
<label for="firstName">Nome: </label>
<input type="text" id="firstName" minlength="2" required/>
<small>Não se esqueça do nome</small>
</div>
<div class="form-control">
<label for="lastName"> Sobrenome:</label>
<input type="text" id="lastName"required/>
<small>Não se esqueça do sobrenome</small>
</div>
<div class="form-control">
<label for="email">Email:</label>
<input type="email" id="email" required/>
<small>Forneça um email válido</small>
</div>
<div class="form-control" id="password-control">
<label for="password">Senha: </label>
<input type="password" id="password" minlength="8" required/>
<small>Mínimo 8 caractéries</small>
</div>
<div class="form-control" id="password-control">
<label for="passwordConfirm">Repetir senha: </label>
<input type="password" id="passwordConfirm" required/>
<small>As senhas não são iguais</small>
</div>
<input type="checkbox" id="viewPassword">Mostrar Senha</input>
<div class="control-button">
<button id="createUserButton" disabled>Criar conta</button>
</div>
</form>
</section>
</div>
<script src="./scripts/main.js" type="module"></script>
</body>
</html>