File: /home/c0400220/public_html/VARIOS2022/contacto.php
<?php
require_once('inc/i_session_lang.php');
if(isset($_REQUEST['status'])) {
$status = $_REQUEST['status'];
} else {
$status = '';
}
switch ($lang) {
case 'es':
$title = 'Contacto';
$label1 = 'NOMBRE';
$label2 = 'APELLIDO';
$label3 = 'E-MAIL';
$label4 = 'TELÉFONO';
$label5 = 'COMENTARIOS';
$label6 = 'ENVIAR';
$label7 = 'CARGAR CV';
$label8 = 'Gracias! Tu mensaje fue enviado.';
$label9 = 'Volver al formulario';
$copy = 'Todos los derechos reservados';
$leyenda = 'Hot-Hed internacional';
break;
case 'en':
$title = 'Contact';
$label1 = 'NAME';
$label2 = 'LAST NAME';
$label3 = 'MAIL';
$label4 = 'TELEPHONE';
$label5 = 'COMMENTS';
$label6 = 'SEND';
$label7 = 'LOAD CV';
$label8 = 'Success! Your message was sent.';
$label9 = 'Back';
$copy = 'All Rights Reserved';
$leyenda = 'Hot-Hed international';
break;
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<title><?php echo $title; ?> - HOT-HED Argentina</title>
<?php include('inc/i_head.php'); ?>
<script lang="JavaScript">
$(function() {
$('.item').krioImageLoader();
$('.slide').krioImageLoader();
doSelect( 'contacto' );
doLangSelect ( '<?php echo($lang); ?>' );
});
function resetValues() {
if (($('.firstname').attr('value')) == '' ){ $('.firstname').attr('value','NOMBRE'); }
if (($('.lastname').attr('value')) == '' ){ $('.lastname').attr('value','APELLIDO'); }
if (($('.mail').attr('value')) == '' ){ $('.mail').attr('value','E-MAIL'); }
if (($('.telefono').attr('value')) == '' ){ $('.telefono').attr('value','TELEFONO'); }
if (($('.comentario').attr('value')) == '' ){ $('.comentario').attr('value','COMENTARIO'); }
}
function closeSent(){
$('#contacto-back').hide();
$('#contacto-normal').fadeIn();
$('.firstname').attr('value','NOMBRE');
$('.lastname').attr('value','APELLIDO');
$('.mail').attr('value','E-MAIL');
$('.telefono').attr('value','TELEFONO');
$('.comentario').attr('value','COMENTARIO');
}
</script>
</head>
<body>
<?php include('inc/i_header.php'); ?>
<div id="wrapper">
<div id="content">
<div id="contentinside">
<div id="contacto" class="container">
<div id="col1" class="cols">
<ul class="bxslider">
<li class="slide">
<a href="https://maps.google.com.ar/maps?q=-38.843618,-68.132361&num=1&t=h&z=16" title="Google Maps" target="_blank">
<img src="img/slide_contacto1.png" alt=""/>
</a>
</li>
</ul>
<div class="counter"></div>
</div>
<div id="col2" class="cols">
<?php if($status != '') { ?>
<div id="contacto-normal" style="padding:10px;">
<h3><?php echo $label8; ?></h3>
<a href="contacto.php" onClick="javascript:closeSent();"><?php echo $label9; ?></a>
</div>
<?php } else { ?>
<div id="contacto-normal">
<form method="POST" action="submitform.php" name="frmContact" enctype="multipart/form-data">
<input type="hidden" name="mode" value="Contact">
<input class="firstname" type="text" placeholder="<?php echo $label1; ?>" name="firstname" required/>
<input class="lastname" type="text" placeholder="<?php echo $label2; ?>" name="lastname" required/>
<input class="mail" type="text" placeholder="<?php echo $label3; ?>" name="mail" required/>
<input class="telefono" type="text" placeholder="<?php echo $label4; ?>" name="phone" required/>
<textarea class="comentario" name="comment" id="" cols="30" rows="10" placeholder="<?php echo $label5; ?>"/></textarea>
<label for="file"><?php echo $label7; ?></label>
<input type="file" class="file" name="cv" value="" />
<button type="submit" class="submit"><?php echo $label6; ?></button>
<!--<input type="button" class="submit" value="" onclick="document.frmContact.submit();" />-->
<div class="clearfix"></div>
</form>
</div>
<?php } ?>
</div>
<div id="col3" class="cols">
<p>
Oficina<br/>
Administrativa / Gerencia
</p>
<p>
Calle San Juan 470<br/>
Centenario, Neuquen-Argentina<br/>
CP: 8309<br/>
Nro. Teléfono: <br/>
+54 0299 154231003<br/>
<a href="mailto:operaciones@hot-hed.com.ar" title="mailto:operaciones@hot-hed.com.ar" target="_blank">operaciones@hot-hed.com.ar</a>
</p>
<p>
Añelo<br/>
Centenario<br/>
Chubut <br/>
Comodoro Rivadavia<br/>
Las Heras<br/>
Mendoza Capital<br/>
Rincón de los Sauces
</p>
<p>
Hot-Hed ©<br/>
<?php echo $copy; ?>
</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div id="loading"></div>
</div>
<?php include('inc/i_footer.php'); ?>
</body>
</html>