-
Notifications
You must be signed in to change notification settings - Fork 0
/
editar_senha.php
84 lines (60 loc) · 2.3 KB
/
editar_senha.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
<?php
ini_set('display_errors',1);
ini_set('display_startup_erros',1);
error_reporting(E_ALL);
include "config.php";
include "banco.php";
include "helper.php";
include "classes/Cadastros.php";
$cadastros = new Cadastros($mysqli);
$tem_erros = false;
$sem_erro_foto = false;
$erros_validacao = array();
if (tem_post()) {
$cadastro = array();
$cadastro['id'] = $_POST['id'];
$_SESSION['id'] = $cadastro['id'];
if(isset($_POST['senha_atual'])) {
if((MD5($_POST['senha_atual'])) == ($_SESSION['senha'])) {
if (isset($_POST['senha']) && strlen($_POST['senha']) >= 6) {
if (($_POST['senha']) == ($_SESSION['usuario'])) {
$tem_erros = true;
$erros_validacao['senha'] = 'Your password can not be equal your username!';
} else {
$cadastro['senha'] = MD5($_POST['senha']);
$_SESSION['senha'] = $cadastro['senha'];
}
} else {
$tem_erros = true;
$erros_validacao['senha'] = 'Password must have 6 characters or more!';
}
if (isset($_POST['senha2']) && strlen($_POST['senha2']) > 0) {
if (($_POST['senha2']) == ($_POST['senha'])) {
$cadastro['senha2'] = MD5($_POST['senha2']);
} else {
$tem_erros = true;
$erros_validacao['senha2'] = 'Passwords do not match!';
}
} else {
$tem_erros = true;
$erros_validacao['senha2'] = 'You forgot here!';
}
} else {
$tem_erros = true;
$erros_validacao['senha_atual'] = 'Wrong password!';
}
} else {
$tem_erros = true;
$erros_validacao['senha_atual'] = 'Where is your password?';
}
if (! $tem_erros) {
$cadastros->editar_senha($cadastro);
header('Location: http://sharingdreams.url.ph/');
die();
}
}
$cadastros -> buscar_dados_cadastro($_SESSION['id']);
$cadastro = $cadastros->cadastro;
$cadastro['senha'] = (isset($_POST['senha'])) ? '' : $_SESSION['senha'];
$cadastro['senha2'] = (isset($_POST['senha2'])) ? '' : '';
include "template_editar_senha.php";