-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperfil(1).php
278 lines (240 loc) · 13.5 KB
/
perfil(1).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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?php include("includes/scripting.php");
$x = 0;
if (isset($_SESSION["uid"]) && $_SESSION["uid"] != ""){
$dataServ = null;
$dataServ = new dataService();
$json_datauser = array();
$x = 0;
$json_datauser = json_decode($dataServ->getUserById($_SESSION["uid"]));
if (isset($json_datauser)){
$usuario_id = $json_datauser->data[0]->id;
$usuario_nombres = $json_datauser->data[0]->nombres;
$usuario_apellidos = $json_datauser->data[0]->apellidos;
$usuario_dianac = $json_datauser->data[0]->dianac;
$usuario_mesnac = $json_datauser->data[0]->mesnac;
$usuario_anonac = $json_datauser->data[0]->anonac;
$usuario_nacionalidad = $json_datauser->data[0]->nacionalidad;
$usuario_email = $json_datauser->data[0]->email;
$usuario_tlf = $json_datauser->data[0]->telefono;
$usuario_cel = $json_datauser->data[0]->celular;
$usuario_accept1 = $json_datauser->data[0]->accept1;
$usuario_accept2 = $json_datauser->data[0]->accept2;
}else{
header("Location: index.php");
}
}else{
header("Location: index.php");
}
$json_paises = array();
$json_paises = json_decode($dataServ->getCountriesList());
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RED AIR</title>
<meta name="description" content="Ofrecemos el mejor servicio a bordo, acompañado de nuestra puntualidad, eficiencia y pronta respuesta de acuerdo a las necesidades y exigencias de los pasajeros.">
<meta name="author" content="RED AIR">
<meta name="keyword" content="RED AIR, Airlines, aerolinea, avion, viajes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800' rel='stylesheet' type='text/css'>
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="assets/img/laser_ico.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/fontello.css">
<link href="assets/fonts/icon-7-stroke/css/pe-icon-7-stroke.css" rel="stylesheet">
<link href="assets/fonts/icon-7-stroke/css/helper.css" rel="stylesheet">
<link href="assets/css/animate.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="assets/css/bootstrap-select.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/icheck.min_all.css">
<link rel="stylesheet" href="assets/css/price-range.css">
<link rel="stylesheet" href="assets/css/owl.carousel.css">
<link rel="stylesheet" href="assets/css/owl.theme.css">
<link rel="stylesheet" href="assets/css/owl.transitions.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</script>
</head>
<body>
<script>
function sendFormReg(){
var formData = new FormData();
formData.append('firstname', document.getElementById("firstname").value);
formData.append('lastname', document.getElementById("lastname").value);
formData.append('birthday', document.getElementById("birthday").value);
formData.append('birthmonth', document.getElementById("birthmonth").value);
formData.append('birthyear', document.getElementById("birthyear").value);
formData.append('country', document.getElementById("country").value);
formData.append('emailreg', document.getElementById("emailreg").value);
formData.append('telefono', document.getElementById("telefono").value);
formData.append('celular', document.getElementById("celular").value);
formData.append('acceptinfo', document.getElementById("acceptinfo").checked);
formData.append('acceptoffers', document.getElementById("acceptoffers").checked);
formData.append('id', '<?php echo $_SESSION["uid"]; ?>');
$.ajax({
url : 'doregisterupdate.php',
type : 'POST',
data : formData,
processData: false,
contentType: false,
success : function(datax) {
var myObj = JSON.parse(datax);
if (myObj.result){
registerMessage("Usted ha editado exitosamente los datos de su cuenta en Laser Airlines.");
}else{
registerMessage("Ha ocurrido un error editando los datos de su cuenta Laser, por favor intente de nuevo.");
}
}
});
}
</script>
<div id="preloader">
<div id="status"> </div>
</div>
<?php include("includes/header.php"); ?>
<div class="page-head">
<div class="container">
<div class="row">
<div class="page-head-content">
<!-- <h1 class="page-title">Quienes somos</h1> -->
</div>
</div>
</div>
</div>
<!-- End page header -->
<div class="content-area blog-page padding-top-40" style="background-color: #FCFCFC; padding-bottom: 55px;">
<div class="container">
<div class="row">
<div class="blog-lst col-md-12 pl0">
<section id="id-100" class="post single">
<div class="post-header single">
<div style="color: #32be66">
<h3 class="wow fadeInLeft animated">MI CUENTA LASER</h3>
<div class="title-line wow fadeInRight animated"></div>
</div>
<!-- <div class="image wow fadeInRight animated">
<img src="assets/img/blog2.jpg" class="img-responsive" alt="Example blog post alt">
</div>-->
</div>
<div id="post-content" class="post-body single wow fadeInLeft animated">
<p> </p>
<p><strong>Información de básica</strong></p>
<form id="form1" action="javascript:sendFormReg()" method="post">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="firstname">Nombre</label>
<input type="text" class="form-control" id="firstname" required value="<?php echo $usuario_nombres ?>">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="lastname">Apellido</label><input type="text" class="form-control" id="lastname" required value="<?php echo $usuario_apellidos ?>">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<label for="birthday">Dia de nacimiento</label>
<select id="birthday" class="form-control" >
<?php for ($x = 1; $x < 31; $x++){ ?>
<option value="<?php echo $x ?>" <?php if ($usuario_dianac == $x){?>selected<?php } ?>><?php echo $x ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<label for="birthmonth">Mes de nacimiento</label>
<select id="birthmonth" class="form-control" >
<?php for ($x = 1; $x < 31; $x++){ ?>
<option value="<?php echo $x ?>" <?php if ($usuario_mesnac == $x){?>selected<?php } ?>><?php echo $x ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<label for="birthyear">Año de nacimiento</label>
<select id="birthyear" class="form-control" >
<?php for ($x = 1900; $x < (date("Y")-10); $x++){ ?>
<option value="<?php echo $x ?>" <?php if ($usuario_anonac == $x){?>selected<?php } ?>><?php echo $x ?></option>
<?php } ?>
</select>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="country">País de origen</label>
<select id="country" class="form-control" >
<?php for ($x = 0; $x < sizeof($json_paises->data); $x++) { ?>
<option value="<?php echo $json_paises->data[$x]->id ?>" <?php if ($usuario_nacionalidad == $json_paises->data[$x]->id){?>selected<?php } ?>><?php echo $json_paises->data[$x]->pais ?></option>
<?php } ?>
</select>
</div>
</div>
<p><br>
</p>
<p><br>
</p>
<p> </p>
<p><strong>Información de seguridad</strong></p>
<div class="col-sm-6">
<div class="form-group">
<label for="firstname">Correo electrónico</label>
<input type="text" class="form-control" id="emailreg" value="<?php echo $usuario_email ?>" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="telefono">Teléfono local</label>
<input type="number" class="form-control" id="telefono" value="<?php echo $usuario_tlf ?>" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="celular">Teléfono celular</label><input type="number" class="form-control" id="celular" value="<?php echo $usuario_cel ?>" required>
</div>
</div>
<p><br>
</p>
<p><br>
</p>
<br>
<br>
<p> </p>
<p><strong>Preferencias de subscripción</strong></p>
<p> </p>
<label>
<input id="acceptinfo" type="checkbox" value="1" <?php if ($usuario_accept1 == "1"){ ?>checked<?php } ?>> Acepto recibir información sobre LASER Airlines.
</label>
<br><br>
<label>
<input id="acceptoffers" type="checkbox" value="1" <?php if ($usuario_accept2 == "1"){ ?>checked<?php } ?>> Acepto recibir ofertas y noticias sobre nuestro programa de viajero frecuente.
</label>
<div style="margin-top: 40px"class="col-sm-12 text-center">
</div>
<div style="margin-top: 40px"class="col-sm-12 text-center">
<button type="submit" class="btn btn-primary">ACTUALIZAR</button>
</div>
</div>
<!-- /.row -->
</form>
<br>
<p> </p></div></section>
</div>
</div>
</div>
</div>
<?php include ("includes/footer.php"); ?>
</script>
</script>
</body>
</html>