-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact_form.php
More file actions
36 lines (36 loc) · 1.6 KB
/
Copy pathcontact_form.php
File metadata and controls
36 lines (36 loc) · 1.6 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
<?php
/**
* Created by PhpStorm.
* User: selly
* Date: 3/10/15
* Time: 2:41 PM
*/
?> <h5>Leave A Message</h5>
<div class="form-wrapper clearfix">
<form class="form-contact submit-form">
<input type="hidden" name="todo" value="contact">
<div class="inputs-wrapper">
<input class="form-name validate-required" type="text" placeholder="Your Name" name="name">
I'm reaching out because:
<select name="reason">
<option value="General">I'm passionate about climate change in general</option>
<option value="Feedback">I want to provide feedback to you about the site/service</option>
<option value="Help">I looking for a way to help change our climate change trajectory</option>
<option value="Volunteering">I'm interested in volunteering</option>
<option value="Contact">I'd like to get in touch</option>
<option value="Other">Something else (please describe below!)</option>
</select>
<input class="form-email validate-required validate-email" type="text" placeholder="Your Email Address" name="email">
<textarea class="form-message validate-required" name="message" placeholder="Your Message" rows="5"></textarea>
</div>
<input type="submit" class="send-form contact-submit" value="Submit Message">
<div class="form-success">
<span class="text-white">Message sent - Thanks for your enquiry. Your message confirmation code is:</span>
</div>
<div class="form-error">
<span class="text-white">Please complete the fields correctly</span>
</div>
<div class="form-message">
</div>
</form>
</div>