Files
desayuno/public_html/descargar_boleto.php
T

56 lines
2.6 KiB
PHP

<?php
include 'php/header.php';
include "sql/conexion.php";
include "sql/funciones.php";
include "muestra_conexion.php";
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D,d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Pragma: no-cache");
session_start();
session_unset();
session_destroy();
?>
<form method="post" id="seccion_descarga">
<div id="contenido" style="margin-left: 35px; border-color: black;">
<div style="padding-left:100px">
<table style="border-collapse: collapse; width: 750px;">
<tr>
<td colspan="2"><h6 style="font-weight: bold;">Descarga de tu boleto</h6></td>
</tr>
<tr>
<td style="text-align: right;">
<label>Correo electrónico</label>
</td>
<td style="text-align: left;">
<input type="text" id="email" class="texto automatico_boleto" name="email" placeholder=" ejemplo@gmail.com" maxlength="100">
<div id="verify_mail"></div><input type="hidden" id="email_valida" value="0">
</td>
</tr>
<tr>
<td colspan="2"><input type="button" id="download_ticket" value="Descargar"></td>
</tr>
<tr>
<td colspan="2"><h6 style="font-weight: bold;">Datos de contacto</h6></td>
</tr>
<tr>
<td colspan="2" style="text-align: left;">
<label style="padding-left: 30px; font-weight: bold;">Gloria Moctezuma Nájera</label>
<ul class="lista-b">
<li style="height: 10px;"><label style="font-style: italic;">Secretaria Técnica de la Secretaría de Extensión Universitaria y Vinculación Institucional</label></li>
<li style="height: 10px;">Facultad de Estudios Superiores Acatlán</li>
<li style="height: 22px;">Universidad Nacional Autónoma de México</li>
<li style="height: 10px;"><span style="font-style: italic;">Número de contacto:</span> 5623-1665</li>
<li><span style="font-style: italic;">Correo electrónico:</span><span style="color: blue;"> vegresados@apolo.acatlan.unam.mx</span></li>
</ul>
</td>
</tr>
</table>
</div>
</div>
</form>
<?php
include ("php/footer.php");