-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
90 lines (74 loc) · 3.15 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
85
86
87
88
89
90
---
layout: default
title: contact
---
<!-- CONTENT -->
<section>
<div class="container">
<div class="row">
<!-- FORM -->
<div class="col-md-8">
<h3>Drop us a line or just say <strong><em>Hello!</em></strong></h3>
<form id="contactForm" action="php/contact.php" method="post">
<div class="row">
<div class="form-group">
<div class="col-md-6">
<label>Full Name *</label>
<input required type="text" value="" data-msg-required="Please enter your name." maxlength="100" class="form-control" name="contact_name" id="contact_name">
</div>
<div class="col-md-6">
<label>E-mail Address *</label>
<input required type="email" value="" data-msg-required="Please enter your email address." data-msg-email="Please enter a valid email address." maxlength="100" class="form-control" name="contact_email" id="contact_email">
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<label>Subject</label>
<input type="text" value="" data-msg-required="Please enter the subject." maxlength="100" class="form-control" name="contact_subject" id="contact_subject">
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-12">
<label>Message *</label>
<textarea required maxlength="5000" data-msg-required="Please enter your message." rows="10" class="form-control" name="contact_comment" id="contact_comment"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<input class="hidden" type="text" name="captcha" id="captcha" value="" /><!-- keep it hidden -->
<input type="submit" value="Send Message" class="btn btn-primary btn-lg" id="contact_submit" />
</div>
</div>
</form>
</div>
<!-- /FORM -->
<!-- INFO -->
<div class="col-md-4">
<h2>Visit Us</h2>
<p>
Our offices are based in the London Borough of Camden where we started with community work and outreach programmes.
</p>
<div class="divider half-margins"><!-- divider --></div>
<p>
<span class="block"><strong><i class="fa fa-map-marker"></i> Address:</strong> 25 Bertram Street, London, N19 5DQ</span>
<span class="block"><strong><i class="fa fa-phone"></i> Phone:</strong> <a href="tel:02072727201">020 7272 7201</a></span>
<span class="block"><strong><i class="fa fa-envelope"></i> Email:</strong> <a href="mailto:[email protected]">[email protected]</a></span>
</p>
<div class="divider half-margins"><!-- divider --></div>
<h4 class="font300">Business Hours</h4>
<p>
<span class="block"><strong>Monday - Friday:</strong> 10am to 6pm</span>
<span class="block"><strong>Saturday:</strong> 10am to 2pm</span>
<span class="block"><strong>Sunday:</strong> Closed</span>
</p>
</div>
<!-- /INFO -->
</div>
</div>
</section>
<!-- /CONTENT -->