-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.php
85 lines (76 loc) · 2.91 KB
/
contacto.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
<?php
$title="IT & Design | Contacto";
$page="contacto";
$headline='Contacto';
?>
<!DOCTYPE html>
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="es">
<?php include_once('template-head.php');?>
<body>
<div id="wrapper">
<!-- start header -->
<?php include_once('template-header.php'); ?>
<!-- end header -->
<?php include_once('template-section-headline.php'); ?>
<section id="content">
<div class="container">
<div class="row">
<div class="span8">
<h4>Comentanos tu proyecto</h4>
<form id="contactform" action="contact/contact.php" method="post" class="validateform" name="send-contact">
<div id="sendmessage">
¡Tu mensaje ha sido enviado!
</div>
<div class="row">
<div class="span4 field">
<input type="text" name="name" placeholder="* Nombre completo" data-rule="maxlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="span4 field">
<input type="text" name="email" placeholder="* Email" data-rule="email" data-msg="Please enter a valid email" />
<div class="validation"></div>
</div>
<div class="span8 margintop10 field">
<input type="text" name="subject" placeholder="Asunto" data-rule="maxlen:4" data-msg="Please enter at least 4 chars" />
<div class="validation"></div>
</div>
<div class="span8 margintop10 field">
<textarea rows="12" name="message" class="input-block-level" placeholder="* Mensaje" data-rule="required" data-msg="Please write something" ></textarea>
<div class="validation"></div>
<p>
<button class="btn btn-theme btn-medium margintop10 pull-left" type="submit">Enviar</button>
<span class="pull-right margintop20">* Campos requeridos</span>
</p>
</div>
</div>
</form>
</div>
<div class="span4">
<div class="clearfix"></div>
<aside class="right-sidebar">
<div class="widget">
<h5 class="widgetheading">Información de Contacto<span></span></h5>
<ul class="contact-info">
<li><label>Movil :</label><a href="tel:+56995128670">+56 9 95128670</a></li>
<li><label>Email : </label><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</aside>
</div>
</div>
</div>
</section>
<?php include_once('template-footer.php'); ?>
</div>
<a href="#" class="scrollup"><i class="icon-angle-up icon-square icon-bglight icon-2x active"></i></a>
<!-- javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<?php include_once('template-js.php'); ?>
<script src="js/custom.js"></script>
<!-- End Javascript-->
</body>
</html>