-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecuperarSenha.php
44 lines (31 loc) · 1.08 KB
/
recuperarSenha.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
<?php
include_once('includes/componentes/cabecalho.php');
include_once('includes/componentes/header.php');
include_once('includes/logica/functions.php');
include_once('includes/logica/conecta.php');
if( empty($_GET['utilizador']) || empty($_GET['confirmacao']) )
die('<p>Não é possível alterar a password: dados em falta</p>');
$utilizador = $_GET['utilizador'];
$confirmacao = $_GET['confirmacao'];
$array=array($utilizador,$confirmacao);
$recuperacao=recuperarSenha($conexao,$array);
if($recuperacao)
{
echo "entrou";
$deletar=deletarRecuperacao($conexao,$array);
if($deletar)
{
?>
<form action="includes/logica/controller.php" method="post">
<input type="hidden" name="email" value="<?php echo $utilizador ?>" />
Nova Senha: <input type="password" name="novasenha" />
<input type="submit" name="alterarsenha" value="Alterar Senha" />
</form>
<?php
}
}
else
{
echo '<p>Não é possível alterar a password: dados incorretos</p>';
}
?>