<?php if($_POST["nombre"] != ""){ $hoy = date("Y-m-d H:i:s"); if($_SESSION['id_user'] != "" ){ $query = mysqli_query($connect,"UPDATE Asistentes SET nombre = '".$_POST["nombre"]."', apellidos = '".$_POST["apellidos"]."', correo = '".$_POST["correo"]."', pais = '".$_POST["pais"]."', ciudad = '".$_POST["ciudad"]."', celular = '".$_POST["celular"]."', especialidad = '".$_POST["especialidad"]."', direccion = '".$_POST["direccion"]."', eps = '".$_POST["eps"]."', ips = '".$_POST["ips"]."', tratamientos = '".$_POST["tratamientos"]."', acepto = '".$_POST["acepto"]."', update_at = '".$hoy."' WHERE id = '".$_SESSION['id_user']."' "); echo ' <script> window.location = "/lobby/exito" </script> '; } else{ $query = mysqli_query($connect,"INSERT INTO Asistentes (nombre, apellidos, correo, pais, ciudad, cedula, celular, especialidad, direccion, eps, ips, tratamientos, acepto, origen, created_at, update_at ) VALUES ('".$_POST["nombre"]."', '".$_POST["apellidos"]."', '".$_POST["correo"]."', '".$_POST["pais"]."', '".$_POST["ciudad"]."', '".$_POST["cedula"]."', '".$_POST["celular"]."', '".$_POST["especialidad"]."', '".$_POST["direccion"]."', '".$_POST["eps"]."', '".$_POST["ips"]."', '".$_POST["tratamientos"]."', '".$_POST["acepto"]."', 2, '".$hoy."', '".$hoy."' ) "); $id_tmp = mysqli_insert_id($connect); $_SESSION['id_user'] = $id_tmp; echo ' <script> window.location = "/lobby/exito" </script> '; } } $query = mysqli_query($connect,"SELECT * FROM Asistentes WHERE id = '".$_SESSION['id_user']."' "); $data = mysqli_fetch_array($query); if($data["nombre"] != "" && $data["pais"] != "" && $data["tratamientos"] != ""){ $_SESSION['profile_full'] = true; echo '<script> window.location = "/lobby/iniciado"; </script>'; } ?> <style> body{ background-size: cover; background-position: center; background-attachment: fixed; background-image: url(<?php echo $url; ?>/img/bg_register.jpeg); } #myVideo { position: fixed; right: 0; bottom: -30; min-width: 100%; min-height: 100%; z-index: -1; width: 100%; } </style> <div class="col-md-12"> <div class="container" style="max-width: 700px;" > <?php echo $rersp; ?> <div class="row" style=""> <div class="col-md-12" align="center"> <div class="card" style="padding-left: 40px; padding-right: 40px; margin-top: 5%; border-radius: 20px; background-color: rgba(255,255,255,0.8);"> <div class="card-body"> <form action="" method="post"> <div class="row"> <div class="col-md-12" style=" margin-bottom: 10px;"> <div style="width: 100%; padding: 8px; font-size: 20px; color: #464646; text-align: center; "> <h3 style="margin-top: 3%; color: #006db7;">VALIDAR DATOS Y REGISTRO</h3> </div> </div> <div class="col-md-4" style="margin-top: 10px" align="left"> <label>Nombres*</label> </div> <div class="col-md-8" style="margin-top: 10px"> <input type="text" class="form-control form-control-sm inputs" name="nombre" required value="<?php echo $data["nombre"] ?>"> </div> <div class="col-md-4" style="margin-top: 10px" align="left"> <label>Apellidos*</label> </div> <div class="col-md-8" style="margin-top: 10px"> <input type="text" class="form-control form-control-sm inputs" name="apellidos" required value="<?php echo $data["apellidos"] ?>"> </div> <?php if($_SESSION['id_user'] != ""){ ?> <div class="col-md-4" style="margin-top: 10px" align="left"> <label>DNI/Cédula*</label> </div> <div class="col-md-8" style="margin-top: 10px"> <input type="text" class="form-control form-control-sm inputs" value="<?php echo $data["cedula"] ?>" disabled> </div> <?php } else{ ?> <div class="col-md-4" style="margin-top: 10px" align="left"> <label>DNI/Cédula*</label> </div> <div class="col-md-8" style="margin-top: 10px"> <input type="number" class="form-control form-control-sm inputs" name="cedula" value="<?php echo $data["cedula"] ?>" > </div> <?php } ?> <div class="col-md-4" style="margin-top: 10px" align="left"> <label>Pais*</label> </div> <div class="col-md-8" style="margin-top: 10px"> <input type="text" class="form-control form-control-sm inputs" name="pais" required value="<?php echo $data["pais"] ?>"> </div> <div class="col-md-12" style="margin-top: 5px; font-size: 11px" align="left"> * Campos obligatorios </div> <!-- inician los terminos --> <div class="col-md-7" style="margin-top: 10px"> <div style="color: #000000; line-height: 18px; text-align: left; margin: 25px 0px;"> <table width="100%" style="font-size: 10px;line-height: 14px;"> <tr> <td width="30"> <?php if($data["tratamientos"] == ""){ echo '<input type="checkbox" style="width: 15px; height: 15px" name="tratamientos" required >'; } else{ echo '<input type="checkbox" style="width: 15px; height: 15px" name="tratamientos" required checked>'; } ?> </td> <td> Acepto tratamiento de datos personales * </td> </tr> </table> </div> </div> <!-- terminan los terminos --> <div class="col-md-5" style="margin-top: 10px"> <button type="submit" class="btn btn-warning btn-block btn_item_menu" style="font-size: 16px; font-weight: bold; border-radius: 30px; background-color: #e12345; border: 0px"> Confirmar y Registrar </button> </div> </div> </form> </div> </div> </div> </div> </div> </div> <style> .inputs{ margin-bottom: 5px; } label{ color: #696969; margin-bottom: 0px; margin-top: 5px; font-size: 14px; } .form-control{ border-radius: 30px; } </style>