-
Notifications
You must be signed in to change notification settings - Fork 1
/
formulario.php
109 lines (97 loc) · 4.38 KB
/
formulario.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
<?php
require_once "configuracoes.php";
require_once "funcoes.php";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
try {
$pessoa = new Pessoa;
$dao = new PessoaDao;
// $dto = new LoginDto($login, $senha);
//desafio: realizar o tratamentos verificando a existencia do valor
//desafio 2: usar DTO
$pessoa->setNome($_POST["nome"]);
$pessoa->setNick($_POST["nick"]);
$pessoa->setEmail($_POST["email"]);
if (!($_POST["senha"] == $_POST["confsenha"])) {
echo "<script language=javascript>alert('As senhas informadas são diferentes!');</script>";
throw new Exception("As senhas informadas são diferentes!");
}
$pessoa->setSenha($_POST["senha"]);
//Primeiro cadastrar senha pra depois fazer upload de fotos
$foto = uploadFotos($_FILES["foto"]);
$pessoa->setFoto($foto);
$dao->salvar($pessoa);
// $dto->getLogin($login);
// echo "Usuário cadastrado com sucesso!";
echo "<script language=javascript>alert('Usuário cadastrado com sucesso!');</script>";
echo "<script language=javascript>window.location.replace('login.php');</script>";
} catch (\Throwable $th) {
echo "Erro: " . $th->getMessage();
}
}
?>
<!-- Formulário para Cadastro de usuários -->
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Cadastro</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/formulario.css" type="text/css" />
<!-- fontes -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Botão de voltar para a tela de login -->
<div class="tela">
<div class="botao"><a href="login.php"><input type="submit" name="submit" value="Voltar" id="botao" /></a></div>
<!-- Formulário de Cadastro -->
<div class="box">
<form action="formulario.php" method="POST" enctype="multipart/form-data">
<fieldset>
<legend><b>Cadastro de Usuário</b></legend>
<br />
<!-- *********************************** NOME COMPLETO *********************************** -->
<div class="inputBox">
<input type="text" name="nome" id="nome" class="inputUser" required />
<label for="nome" class="labelInput">Nome Completo:</label>
</div>
<br /><br />
<!-- ******************************* USER - NOME DE USUÁRIO ******************************* -->
<div class="inputBox">
<input type="text" name="nick" id="nick" class="inputUser" required />
<label for="nick" class="labelInput">Nome de Usuário (NickName):</label>
</div>
<br /><br />
<!-- *********************************** EMAIL *********************************** -->
<div class="inputBox">
<input type="email" name="email" id="email" class="inputUser" required />
<label for="email" class="labelInput">e-mail:</label>
</div>
<br /><br />
<!-- *********************************** FOTO *********************************** -->
<div class="inputBox">
<div class="labFoto"><label for="foto" class="labFoto">Upload de Foto:</label></div>
<input type="file" name="foto" id="foto" class="inputUser" accept="image/*" />
</div>
<br /><br />
<!-- *********************************** SENHA *********************************** -->
<div id="senha1" class="inputBox">
<input type="password" name="senha" id="senha" class="inputUser" required />
<label for="senha" class="labelInput">Senha:</label>
</div>
<div id="senha2" class="inputBox">
<input type="password" name="confsenha" id="confsenha" class="inputUser" required />
<label for="confsenha" class="labelInput">Confirme a Senha:</label>
</div>
<br /><br /><br />
<!-- *********************************** BOTÃO CADASTRAR *********************************** -->
<input type="submit" value="Cadastrar" name="submit" id="submit" />
</fieldset>
</form>
</div>
</div>
</body>
</html>