-
Notifications
You must be signed in to change notification settings - Fork 1
/
recuperarClave.php
153 lines (142 loc) · 4.73 KB
/
recuperarClave.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
include('verificarDatos/config.php');
//Generando clave aleatoria
$logitudPass = 4;
$miPassword = substr( md5(microtime()), 1, $logitudPass);
$clave = $miPassword;
$correo = trim($_REQUEST['email']); //Quitamos algun espacion en blanco
$consulta = ("SELECT * FROM login WHERE email ='".$correo."'");
$queryconsulta = mysqli_query($con, $consulta);
$cantidadConsulta = mysqli_num_rows($queryconsulta);
$dataConsulta = mysqli_fetch_array($queryconsulta);
if($cantidadConsulta ==0){
header("Location:index.php?errorEmail=1");
exit();
}else{
$updateClave = ("UPDATE login SET password='$clave' WHERE email='".$correo."' ");
$queryResult = mysqli_query($con,$updateClave);
$destinatario = $correo;
$asunto = "Recuperando Clave - WebDeveloper";
$cuerpo = '
<!DOCTYPE html>
<html lang="es">
<head>
<title>Recuperar Clave de Usuario</title>';
$cuerpo .= '
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
font-size: 16px;
font-weight: 300;
color: #888;
background-color:rgba(230, 225, 225, 0.5);
line-height: 30px;
text-align: center;
}
.contenedor{
width: 80%;
min-height:auto;
text-align: center;
margin: 0 auto;
background: #ececec;
border-top: 3px solid #E64A19;
}
.btnlink{
padding:15px 30px;
text-align:center;
background-color:#cecece;
color: crimson !important;
font-weight: 600;
text-decoration: blue;
}
.btnlink:hover{
color: #fff !important;
}
.imgBanner{
width:100%;
margin-left: auto;
margin-right: auto;
display: block;
padding:0px;
}
.misection{
color: #34495e;
margin: 4% 10% 2%;
text-align: center;
font-family: sans-serif;
}
.mt-5{
margin-top:50px;
}
.mb-5{
margin-bottom:50px;
}
</style>
';
$cuerpo .= '
</head>
<body>
<div class="contenedor">
<img class="imgBanner" src="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/assets/images/banner2.png">
<p> </p>
<p> </p>
<table style="max-width: 600px; padding: 10px; margin:0 auto; border-collapse: collapse;">
<tr>
<td style="padding: 0">
<img style="padding: 0; display: block" src="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/assets/images/banner.jpg" width="100%">
</td>
</tr>
<tr>
<td style="background-color: #ffffff;">
<div class="misection">
<h2 style="color: red; margin: 0 0 7px">Hola, '.$dataConsulta['fullName'].'</h2>
<p style="margin: 2px; font-size: 18px">te hemos creado una nueva clave temporal para que puedas iniciar sesión, la clave temporal es: <strong>'.$clave.'</strong> </p>
<p> </p>
<p> </p>
<a href="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/" class="btnlink">Iniciar Sesión </a>
<p> </p>
<p> </p>
<img style="padding: 0;" src="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/assets/images/welltow.gif" width="50%">
<p> </p>
</div>
</td>
</tr>
<tr>
<td style="background-color: #ffffff;">
<div class="misection">
<h2 style="color: red; margin: 0 0 7px">Visitar Canal de Youtube</h2>
<img style="padding: 0; display: block" src="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/assets/images/canal.png" width="100%">
</div>
<div class="mb-5 misection">
<p> </p>
<a href="https://www.youtube.com/channel/UCodSpPp_r_QnYIQYCjlyVGA" class="btnlink">Visitar Canal </a>
</div>
</td>
</tr>
<tr>
<td style="padding: 0;">
<img style="padding: 0; display: block" src="https://permutasalcuadrado.com/Como-recuperar-clave-de-usuario-usando-PHP-y-MYSQL/assets/images/footer.png" width="100%">
</td>
</tr>
</table>';
$cuerpo .= '
</div>
</body>
</html>';
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: WebDeveloper\r\n";
$headers .= "Reply-To: ";
$headers .= "Return-path:";
$headers .= "Cc:";
$headers .= "Bcc:";
(mail($destinatario,$asunto,$cuerpo,$headers));
header("Location:index.php?email=1");
exit();
}
?>