-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
50 lines (47 loc) · 2.12 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
---
layout: default
body_class: contact-page
---
<!-- ******CONTACT MAIN****** -->
<section id="contact-main" class="contact-main section">
<div class="container text-center">
<h2 class="title">Get started with OPAL in your organisation</h2>
<p class="intro">Get in touch to talk to someone about how OPAL can help your organisation, arrange a demo, or just have a chat.</p>
<div class="row">
<div class="item col-md-8 col-sm-12 col-xs-12">
<div class="row text-center">
<div class="contact-form">
<form class="form" id="contactform">
<div class="form-group name">
<label class="sr-only" for="name">Your name</label>
<input id="name" type="text" class="form-control" placeholder="Your name">
</div><!--//form-group-->
<div class="form-group email">
<label class="sr-only" for="email">Your email</label>
<input id="email" type="email" class="form-control" placeholder="Your email">
</div><!--//form-group-->
<div class="form-group message">
<label class="sr-only" for="message">Your message</label>
<textarea id="message" class="form-control" rows="8" placeholder="Your message"></textarea>
</div><!--//form-group-->
<button type="submit" class="btn btn-block btn-cta-primary"
onclick="contactform(event)">
Send Message
</button>
</form><!--//form-->
</div><!--//contact-form-->
</div><!--//row-->
</div><!--//item-->
<div class="item col-md-4 col-sm-12 col-xs-12 last">
<div class="item-inner">
<div class="icon">
<i class="fa fa-envelope"></i>
</div>
<div class="details">
<h4>Email us at:</h4>
<p><a href="#">[email protected]</a></p>
</div><!--details-->
</div><!--//item-inner-->
</div><!--//row-->
</div><!--//container-->
</section><!--//contact-->