-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
76 lines (60 loc) · 3.37 KB
/
contato.html
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
---
title: Contato
layout: default
---
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container">
<div id="success" class="alert alert-dismissable alert-success" style="display:none;">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
Email enviado com sucesso!
</div>
<div id="error" class="alert alert-dismissable alert-danger" style="display:none;">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
Erro ao enviar email.
</div>
<script type="text/javascript">
var result = getURLParameter('sent');
if (result == 'true') {
document.getElementById('success').style.display = 'block';
}
if (result == 'false') {
document.getElementById('error').style.display = 'block';
}
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
);
}
</script>
<div class="row">
<div class="col-md-6 col-sm-12">
Envie um email para <a href="mailto:[email protected]">[email protected]</a> ou entre em contato através do formulário abaixo.
<br/><br/>
<form role="form" action="contact.php" method="post">
<div class="form-group">
<label for="nome">Nome</label>
<input type="text" class="form-control" name="cf_name" placeholder="Nome">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" name="cf_email" placeholder="Endereço de email">
</div>
<div class="form-group">
<label for="texto">Mensagem</label>
<textarea class="form-control" rows="5" name="cf_message"></textarea>
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</div>
<div class="col-md-6 col-sm-12">
<!-- Responsive iFrame -->
<div class="Flexible-container">
<iframe width="1000" height="1000" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com.br/maps?f=q&source=s_q&hl=pt-BR&geocode=&q=ime+junior&aq=&sll=-14.239424,-53.186502&sspn=74.337346,135.263672&t=m&ie=UTF8&hq=ime+junior&hnear=&cid=12296971970298163504&ll=-22.952229,-43.166099&spn=0.018969,0.027466&z=15&iwloc=A&output=embed"></iframe>
</div>
<a href="https://maps.google.com.br/maps?f=q&source=embed&hl=pt-BR&geocode=&q=ime+junior&aq=&sll=-14.239424,-53.186502&sspn=74.337346,135.263672&t=m&ie=UTF8&hq=ime+junior&hnear=&cid=12296971970298163504&ll=-22.952229,-43.166099&spn=0.018969,0.027466&z=15&iwloc=A" style="color:#0000FF;text-align:left" target="_blank">Exibir mapa ampliado</a>
</div>
</div>
</div><!-- /.row -->
</div><!-- /.container -->