-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastro.php
119 lines (92 loc) · 4.09 KB
/
cadastro.php
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
include 'php/funcoes.php';
include 'php/constantes.php';
// Variáveis:
$nome = $email = $senha = $confirmaSenha = $telefone = $endereco = "";
$msgErroNome = $msgErroEmail = $msgErroSenha = $msgErroTelefone = $msgErroEndereco = "";
// Verifica se método POST foi chamado:
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Verifica se 'nome' foi enviado pelo POST:
if (empty($_POST["nome"])) {
$msgErroNome = "Nome é requerido!";
} else {
$nome = trataEntrada($_POST["nome"]);
if (!verificaSeNomeEValido($nome)) {
$msgErroNome = "Nome deve conter apenas LETRAS e ESPAÇOS!";
}
}
// Verifica se 'email' foi enviado pelo POST:
if (empty($_POST["email"])) {
$msgErroEmail = "E-mail é requerido!";
} else {
$email = trataEntrada($_POST["email"]);
if (!verificaSeEmailEValido($email)) {
$msgErroEmail = "Formato de e-mail inválido!";
}
$emailJaExiste = verificaSeEmailJaExiste($email);
if ($emailJaExiste === true) {
$msgErroEmail = "Este e-mail já foi cadastrado!";
} else if ($emailJaExiste === null) {
$msgErroNome = "Erro no servidor, tente novamente mais tarde!";
}
}
// Verifica se 'senha' e 'confirmaSenha' foram enviadas pelo POST:
if ((empty($_POST["senha"])) || (empty($_POST["confirmaSenha"]))) {
$msgErroSenha = "Senhas são requeridas!";
} else {
$senha = trataEntrada($_POST["senha"]);
$confirmaSenha = trataEntrada($_POST["confirmaSenha"]);
// Verifica se ambas as senhas são iguais:
if ($senha === $confirmaSenha) {
if (!verificaSeSenhaEValida($senha)) {
$msgErroSenha = "A senha deve ter no mínimo ".MIN_CHAR_SENHA." caracteres!";
}
} else {
$msgErroSenha = "Ambas as senhas devem ser IDÊNTICAS!";
}
}
$telefone = trataEntrada($_POST["telefone"]);
if (!verificaSeTelefoneEValido($telefone)) {
$msgErroTelefone = "Formato de telefone inválido!";
}
$endereco = trataEntrada($_POST["endereco"]);
if (!verificaSeEnderecoEValido($endereco)) {
$msgErroEndereco = "Número máximo de caracteres alcançado!";
}
// Grava na base de dados:
if (verificaSeFormularioEValido($msgErroNome, $msgErroEmail, $msgErroSenha, $msgErroTelefone, $msgErroEndereco)) {
if (insereDadosEmCliente($nome, $email, $senha, $telefone, $endereco)) {
mudaDePagina("index.php?nome=$nome&email=$email");
} else {
$msgErroNome = "Erro no servidor, tente mais tarde!";
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cadastre-se!</title>
<link href="css/estilos_gerais.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="caixaInterface cadastro">
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
<input type="text" name="nome" class="campoDeEntrada" placeholder="nome completo" value="<?php echo $nome;?>" maxlength="<?php echo MAX_CHAR_NOME;?>" required>
<?php verificaMsgECriaBalao($msgErroNome, "balaoMsg erro");?>
<input type="text" name="email" class="campoDeEntrada" placeholder="e-mail" value="<?php echo $email;?>" maxlength="<?php echo MAX_CHAR_EMAIL;?>" required>
<?php verificaMsgECriaBalao($msgErroEmail, "balaoMsg erro");?>
<input type="password" name="senha" class="campoDeEntrada" placeholder="senha" maxlength="<?php echo MAX_CHAR_SENHA;?>" required>
<?php verificaMsgECriaBalao($msgErroSenha, "balaoMsg erro");?>
<input type="password" name="confirmaSenha" class="campoDeEntrada" placeholder="confirme a senha" maxlength="<?php echo MAX_CHAR_SENHA;?>" required>
<input type="text" name="telefone" class="campoDeEntrada" value="<?php echo $telefone;?>" placeholder="telefone" maxlength="<?php echo MAX_CHAR_TELEFONE;?>">
<?php verificaMsgECriaBalao($msgErroTelefone, "balaoMsg erro");?>
<input type="text" name="endereco" class="campoDeEntrada" value="<?php echo $endereco;?>" placeholder="endereço" maxlength="<?php echo MAX_CHAR_ENDERECO;?>">
<?php verificaMsgECriaBalao($msgErroEndereco, "balaoMsg erro");?>
<br><input type="submit" name="botaoEnviarDados" value="Cadastrar">
</form>
<a href="index.php"><button type="button" class="botao botaoVoltar">Voltar</button></a>
</div>
</body>
</html>