generated from PacketBlade/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
84 lines (81 loc) · 2.5 KB
/
contact.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
76
77
78
79
80
81
82
83
84
---
title: Contact
heading: Contact us
description: We are more than happy to help you with any questions you might have.
---
<!--
SPDX-FileCopyrightText: 2016-2020 CloudCannon <support@cloudcannon.com>
SPDX-FileCopyrightText: 2022 Sidings Media <packetblade@sidingsmedia.com>
SPDX-License-Identifier: MIT
-->
<section class="contact" id="contact">
<div class="row center-xs">
<div class="col-xs-12">
<noscript>Please enable JavaScript to use the contact form.</noscript>
</div>
</div>
<form id="form-contact" method="post">
<input
type="text"
name="name"
aria-label="name"
placeholder="Your name"
required=""
/>
<input
type="email"
id="email"
name="email"
aria-label="email address"
placeholder="E-Mail address"
required=""
/>
<input
type="text"
name="_subject"
aria-label="email subject"
placeholder="Subject"
required=""
/>
<textarea
name="message"
aria-label="Please enable JS"
style="visibility: hidden"
class="hide"
hidden="true"
></textarea>
<textarea
name="message2"
aria-label="email message"
placeholder="Your message"
required=""
style="visibility: visible"
class="show"
></textarea>
<div class="contact-submit">
<input
id="form-submit"
type="submit"
value="Send"
style="visibility: visible"
class="show"
/>
<span
id="form-sending"
style="visibility: hidden"
class="hide"
hidden="true"
>Deploying your message...</span
>
<span id="form-thankyou" style="visibility: hidden" class="hide" hidden="true">
Thanks for your message!
</span>
<span id="form-error" hidden="">
Sorry, we couldn't send your message! Please reload.
</span>
</div>
</div>
</form>
</section>
<script src="/js/base.js"></script>
<script src="/js/contact.js"></script>