-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequestdemo.html
67 lines (55 loc) · 2.63 KB
/
requestdemo.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
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
<style type="text/css">
label { width: 15em; float: left; }
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }
</style>
</head>
<body>
<form id="roi-form" action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST"> <input name="oid" value="00D400000008pQT" type="hidden" /> <input name="retURL" value="http://c2logix.com/component/content/article/123" type="hidden" />
<p>
<label for="first_name">First Name: </label>
<input id="first_name" maxlength="40" name="first_name" size="20" type="text" class="required"/></p>
<p>
<label for="last_name">Last Name: </label>
<input id="last_name" maxlength="80" name="last_name" size="20" type="text" class="required" /></p>
<p>
<label for="phone">Phone</label>
<input id="phone" maxlength="40" name="phone" size="20" type="text" class="required"/></p>
<p>
<label for="email">Email</label>
<input id="email" maxlength="80" name="email" size="20" type="email" class="required"/></p>
<p>
<label for="company">Company</label>
<input id="company" maxlength="40" name="company" size="20" type="text" /></p>
<p>
<label for="city">City</label>
<input id="city" maxlength="40" name="city" size="20" type="text" /></p>
<p>
<label for="state">State/Province</label>
<input id="state" maxlength="20" name="state" size="20" type="text" /></p>
<p>
<label for="first_name">Products interested in:</label>
<select id="00N40000001i3Xw" name="00N40000001i3Xw" title="Products interested in"> <option value="C2RouteApp Demo">C2RouteApp Demo</option> <option value="FleetRoute Demo">FleetRoute Demo</option> <option value="TourSolver Demo">TourSolver Demo</option> <option value="Not sure which Product I need">Not sure which Product I need</option> </select>
</p>
<p>
<label for="00N400000028tUt">Number or Vehicles or Routes:</label>
<input id="00N400000028tUt" name="00N400000028tUt" size="20" type="text" /></p>
<p>
<label for="00N400000028tV3">Total Stops or Locations:</label>
<input id="00N400000028tV3" name="00N400000028tV3" size="20" type="text" /></p>
<p>
<label for="00N40000001h9AL">Questions or Comments:</label>
<input id="00N40000001h9AL" maxlength="255" name="00N40000001h9AL" size="20" type="text" /></p>
<p>
<input name="submit" type="submit" id="submit"/></p>
</form>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function() {
jQuery("#roi-form").validate();
});
</script>
</body>