-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontatos.html
More file actions
56 lines (47 loc) · 2.22 KB
/
contatos.html
File metadata and controls
56 lines (47 loc) · 2.22 KB
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
---
layout: page
css: ["index.css"]
---
<!-- START HERE -->
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Style The Contact Form How Ever You Prefer -->
<link rel="stylesheet" href="/css/form.css">
<form class="gform pure-form pure-form-stacked" method="POST" data-email="example@email.net"
action="https://script.google.com/macros/s/AKfycbyRKyzxKkTwuRcW1Au3ovCe-AuuBh1weeBE_KsKQQ/exec">
<!-- change the form action to your script url -->
<div class="form-elements">
<fieldset class="pure-group">
<label for="name">Nome: </label>
<input id="name" name="name" required placeholder="Digite seu nome" />
</fieldset>
<fieldset class="pure-group">
<label for="email"><em>Seu</em> Endereço de email:</label>
<input id="email" name="email" type="email" value=""
required placeholder="seu.nome@email.com"/>
<span class="email-invalid" style="display:none">
Digite um email válido</span>
</fieldset>
<fieldset class="pure-group">
<label for="assunto">Assunto: </label>
<input id="assunto" name="assunto" required placeholder="Assunto"></textarea>
</fieldset>
<fieldset class="pure-group">
<label for="message">Mensagem: </label>
<textarea id="message" name="message" rows="7"
required placeholder="Digite sua mensagem..."></textarea>
</fieldset>
<button class="button-success pure-button button-xlarge">
<i class="fa fa-paper-plane"></i> Enviar</button>
</div>
<!-- Customise the Thankyou Message People See when they submit the form: -->
<div class="thankyou_message" style="display:none;">
<center><h2>Opa! Sua mensagem acabou de chegar em minha caixa de entrada!
Responderei assim que possível. Obrigado brother!</h2></center>
<center><img src="/images/send.gif" width="600" height="370"></center>
</div>
</form>
<!-- Submit the Form to Google Using "AJAX" -->
<script data-cfasync="false" type="text/javascript"
src="/script/form-submission-handler.js"></script>
<!-- END -->