-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
83 lines (65 loc) · 2.87 KB
/
signup.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
<!DOCTYPE html>
<html>
<head>
<title>Trial sign up</title>
@@include('./partials/inject_head.html')
<link rel="stylesheet" type="text/css" href="css/signup.css">
</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>Invest in your sales team</h1>
<p>Boost your sales performance now.</p>
</div>
</div>
</div>
</div>
<!-- end hero -->
</div>
<div class="sf-one-column">
<div class="container">
<div class="row">
<h3>Free trial</h3>
<div class="subtitle">
<p>Please complete the form to request your free trial.</p>
</div>
<form action="https://salesflare.us8.list-manage.com/subscribe/post?u=e6b1e240fe7c654b0536c1e63&id=589f842164" method="post" class="sf-form">
<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>Role</label>
<input type="text" name="ROLE" value="" placeholder="" />
<label>Company name</label>
<input type="text" name="COMPANY" value="" placeholder="" />
<label>Estimated amount of users *</label>
<input type="text" name="USERS" value="" placeholder="" />
<p>* all people working directly or indirectly with customers: sales, sales support, project teams, ...</p>
<!--<input id="icrm" type="checkbox" name="CRM" value="Yes" />
<label for="icrm">
<span class="checkbox"></span> CRM
</label>
<input id="idata" type="checkbox" name="DATAIMPORT" value="No" />
<label for="idata">
<span class="checkbox"></span> Custom data imports
</label>-->
<button type="submit" class="sf-button">Sign up</button>
</fieldset>
</form>
</div>
</div>
</div>
@@include('./partials/footer.html')
@@include('./partials/inject_foot.html')
</body>
</html>