-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
69 lines (53 loc) · 2.09 KB
/
contactus.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
<!DOCTYPE html>
<html>
<head>
<title>Contact us</title>
@@include('./partials/inject_head.html')
<link rel="stylesheet" type="text/css" href="css/contactus.css">
<link rel="canonical" href="https://salesflare.com/contactus" />
</head>
<body>
@@include('./partials/mobile_menu.html')
<!-- header -->
<div class="sf-header feature larger">
@@include('./partials/menu.html')
<!-- hero -->
<div class="sf-hero">
<div class="container">
<div class="row">
<div>
<h1>Contact us</h1>
<p>We’ll get back to you asap.</p>
</div>
</div>
</div>
</div>
<!-- end hero -->
</div>
<div class="sf-one-column">
<div class="container">
<div class="row">
<h3>Let’s get in touch</h3>
<div class="subtitle">
<p>Please fill out the form below.</p>
</div>
<form class="sf-form" action="https://salesflare.us8.list-manage.com/subscribe/post?u=e6b1e240fe7c654b0536c1e63&id=6b7d0296af" method="post">
<fieldset>
<label>Name</label>
<input type="text" name="NAME" value="" placeholder="">
<label>Work email address</label>
<input type="email" name="EMAIL" value="" placeholder="">
<label>Phone number</label>
<input type="tel" name="PHONE" value="" placeholder="">
<label>Message</label>
<textarea name="MESSAGE" placeholder=""></textarea>
<button type="submit" class="sf-button">Submit</button>
</fieldset>
</form>
</div>
</div>
</div>
@@include('./partials/footer.html')
@@include('./partials/inject_foot.html')
</body>
</html>