-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
167 lines (130 loc) · 5.71 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<!-- Hammer reload -->
<script>
setInterval(function(){
try {
if(typeof ws != 'undefined' && ws.readyState == 1){return true;}
ws = new WebSocket('ws://'+(location.host || 'localhost').split(':')[0]+':35353')
ws.onopen = function(){ws.onclose = function(){document.location.reload()}}
ws.onmessage = function(){
var links = document.getElementsByTagName('link');
for (var i = 0; i < links.length;i++) {
var link = links[i];
if (link.rel === 'stylesheet' && !link.href.match(/typekit/)) {
href = link.href.replace(/((&|\?)hammer=)[^&]+/,'');
link.href = href + (href.indexOf('?')>=0?'&':'?') + 'hammer='+(new Date().valueOf());
}
}
}
}catch(e){}
}, 1000)
</script>
<!-- /Hammer reload -->
<!-- Common part in the html/head section -->
<meta charset="utf-8">
<meta http-equiv="cleartype" content="on">
<meta name="robots" content="noindex">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Unmetric">
<meta name="msapplication-TileImage" content="">
<meta name="msapplication-TileColor" content="#4c5bb7">
<!-- JavaScript -->
<script src='assets/js/google-analytics.js'></script>
<script src='assets/js/vendor/modernizr-2.6.2.min.js'></script>
<!-- For all browsers -->
<link rel='stylesheet' href='assets/css/style.css'>
<link href="assets/favicon.ico" rel="shortcut icon">
<link href="assets/apple-touch-icon.png" rel="apple-touch-icon">
<!--[if (lt IE 9) & (!IEMobile)]>
<script src='assets/js/vendor/selectivizr-min.js'></script>
<script src='assets/js/vendor/respond.min.js'></script>
<![endif]-->
<title>Unmetric</title>
</head>
<body class="signup_pg">
<header class="header">
<div class="un_logo-wrap">
<a class="un_logo" href="index.html"><span>unmetric</span></a>
</div>
<nav class="main_nav-wrap">
<ul class="main_nav">
<li><a class="login_link" href="#">Login</a></li>
<li><a class="menu_link" href="#">Menu</a></li>
</ul>
</nav>
</header>
<section class="section signup_form-wrap">
<div class="content">
<h2 class="t-center">Try Unmetric Free for 6 Days</h2>
<p class="center-size8of12 t-center push_btm-6">Find out how turning big data into smart data can help you plan better content. <span class="break-line">Request a trial now and we’ll be in touch to get you started.</span></p>
<p class="alert alert-warning">Please fill in all the fields above.</p>
<form method="post" class="signup-form">
<div class="input-wrap">
<input type="text" required="" name="name" class="input-name" tabindex="1" id="signup-name"/>
<label alt="First and Last Name" placeholder="Your Name"></label>
</div>
<div class="input-wrap">
<input type="email" required="" name="email" class="input-email" tabindex="2" id="signup-email"/>
<label alt="Business Email" placeholder="Your Email"></label>
</div>
<div class="input-wrap">
<input type="text" required="" name="company-name" class="input-company" tabindex="3" id="signup-company" />
<label alt="Company Name" placeholder="Your Company"></label>
</div>
<div class="input-wrap">
<input type="tel" required="" name="contact-number" class="input-contact" tabindex="4" id="signup-contact" />
<label alt="Contact Number" placeholder="Your Contact No."></label>
</div>
<div class="input-wrap select-wrap">
<select tabindex="5" id="signup-sector">
<option>Your Sector of Interest</option>
<option>Automative</option>
</select>
<label alt="Sector of Interest" placeholder="Your sector of interest"></label>
</div>
<div class="input-wrap select-wrap is_hidden">
<select tabindex="6" id="sectors">
</select>
</div>
<div class="input-wrap select-wrap">
<select tabindex="7" id="signup-geo">
<option>Your Geography</option>
<option>North America</option>
</select>
<label alt="Your Geography" placeholder="Choose your Geography"></label>
</div>
<div class="input-wrap">
<button type="submit" class="btn btn-pri" tabindex="8">Sign Up </button>
</div>
</form>
</div>
</section>
<!-- All JS goes here-->
<script src='assets/js/vendor/jquery-1.9.1.min.js'></script>
<script src='assets/js/vendor/jquery.smooth-scroll.min.js'></script>
<script src='assets/js/vendor/bjqs-1.3.min.js'></script>
<script src='assets/js/checksession.js'></script>
<script src='assets/js/main.js'></script>
<script src='assets/js/vendor/jquery.sticky.js'></script>
<script>
$(window).load(function(){
$("#c-nav").sticky({ topSpacing: 15 });
});
$(document).ready(function() {
$(".scroll").click(function(event) {
event.preventDefault();
var id = $(this).attr('href');
$('html,body').animate({
scrollTop : $(this.hash).offset().top
}, 600);
});
});
</script>
</body>
</html>