forked from uncatcrea/q-android
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
42 lines (29 loc) · 1.07 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
<!--
Contact Form page template
-->
<div id="content" class="content single-template">
<div class="post-title">
<h1>
Contact
</h1>
</div>
<div id="single-content" class="single-content">
<!--
Contact form
The id must be the same as the one defined in js/forms.js
The class must be "app-form" so that the form can be handled by js/forms.js
-->
<form id="contact" class="app-form">
<label for="firstname">First name</label>
<input name="firstname" id="firstname">
<label for="lastname">Last name</label>
<input name="lastname" id="lastname">
<label for="email">Email</label>
<input name="email" id="email" type="email">
<label for="message">Message</label>
<textarea name="message" id="message"></textarea>
<input type="submit" value="Send">
<div class="feedback"></div> <!-- Where we will display form submission results -->
</form>
</div>
</div>