-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfil.php
167 lines (107 loc) · 3.13 KB
/
perfil.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<?php
session_start();
?>
<title>Perfil -
<?php
echo $_SESSION["usuario"];
?>
</title>
<link rel="icon" href="img/chat.png" type="image/png" sizes="16x16">
<link href="css/style_perfil.css" rel="stylesheet" type="text/css">
<?php
include "php/conexionDb.php";
$conexion = conectate();
if($_SESSION["usuario"] != ""){
if(isset($_POST["volver"])){
header("location:usuarios.php");
exit();
}
if(isset($_POST["modificar"])){
include "php/modificarPerfil.php";
}
}
else{
header("location:index.php");
exit();
}
?>
</head>
<body>
<?php
$sql = $conexion ->prepare("SELECT * FROM usuarios WHERE usuario = ?");
$datos = array($_SESSION["usuario"]);
$sql -> execute($datos);
$resultado = $sql->fetchAll();
foreach ($resultado as $row){
$nombre = $row["nombre"];
$apellidos = $row["apellidos"];
$email = $row["email"];
$existe = false;
if($row["fotoPerfil"] != NULL){
$existe = true;
$dirFoto = $row["fotoPerfil"];
}
}
?>
<div id="contenedor">
<h1>Modificando Perfil de <?php echo $nombre; ?></h1>
<div id="fotoPerfil">
<?php
if($existe == false){
echo "<img id='perfil' src='img/perfil/fotodefecto.png'>";
}
else{
echo "<img id='perfil' src='". $row["fotoPerfil"] ."'>";
}
?>
</div>
<div id="formulario">
<form method="post">
<label for="nombre">Nombre:</label><br>
<input type="text" id="nombre" name="nombre" placeholder="Nombre" value="<?php echo $nombre; ?>"><br>
<label for="apellidos">Apellidos:</label><br>
<input type="text" id="apellidos" name="apellidos" placeholder="Apellidos" value="<?php echo $apellidos; ?>"><br>
<label for="contrasena">Contraseña:</label><br>
<input type="password" id="contrasena" name="pass1" placeholder="Contraseña"><br>
<label for="repContrasena">Repetir Contraseña:</label><br>
<input type="password" id="repContrasena" name="pass2" placeholder="Repetir Contraseña"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" placeholder="Email" value="<?php echo $email; ?>"><br>
<input type="submit" name="modificar" value="Modificar Datos">
</form>
<br>
<br>
<form action="php/subirFotoPerfil.php" method="post" enctype="multipart/form-data">
<?php
if($existe == true){
echo "<label for='fotoPerfil'>Cambiar foto Perfil:</label>";
}
else{
echo "<label for='fotoPerfil'>Sube foto de Perfil:</label>";
}
?>
<input type="file" name="fotoPerfil" id="fotoPerfil">
<br/>
<br/>
<?php
if($existe == true){
echo "<input type='submit' value='Cambia Foto' name='submit'>";
}
else{
echo "<input type='submit' value='Subir Foto' name='submit'>";
}
?>
</form>
<br>
<br>
<form method="post">
<input type="submit" name="volver" value="Volver">
</form>
</div>
<span id="errores"></span>
</div>
</body>
</html>