-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (136 loc) · 5.2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sneakerhead Signup<span id="selection-marker-1" class="redactor-selection-marker"></span></title>
<script>
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware"];analytics.factory=function(e){return function(){var t=Array.prototype.slice.call(arguments);t.unshift(e);analytics.push(t);return analytics}};for(var e=0;e<analytics.methods.length;e++){var key=analytics.methods[e];analytics[key]=analytics.factory(key)}analytics.load=function(key,e){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.src="https://cdn.jsdelivr.net/gh/realtimedatalake/analytics-next-cc@main/dist/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);analytics._loadOptions=e};analytics._writeKey="[your_write_key]";;analytics.SNIPPET_VERSION="4.15.3";
analytics.load("[your_write_key]", { ccUrl: "http://localhost:8080/ingest", dontSendToSegment: false });
analytics.page();
}}();
</script>
</head>
<body>
<body>
<h1>Sign up for the latest information on sneaker drops!</h1>
<p>Enter your contact information if you would like to receive alerts about the best sneakers as soon as they drop.</p>
<form name="sneakersignup" onsubmit="identify(event)">
<br> <br>
Name: <input name="fullname" required="" size="60" type="text"/>
<br> <br>
Email: <input name="email" required="" size="60" type="email"/>
<br> <br>
<label for="shoeType">Preferred Shoe</label>
<select id="shoeType" name="shoeType">
<option value="Running">Running</option>
<option value="Cross Trainers">Cross Trainers</option>
<option value="Sports">Sports</option>
</select>
<br> <br>
<input name="submit" type="submit" value="submit"/> </form>
<br>
<script type="text/javascript">
function identify(e){
e.preventDefault();
var form = e.target;
var email = form["email"].value;
var fullname = form["fullname"].value;
var shoeType = form["shoeType"].value;
var user = {
email: email,
name: fullname
};
// Identify call
analytics.identify('12345', {
email: email,
name: fullname,
shoeType: shoeType
});
// Sign-up Track call
analytics.track('user signed up', user, function() {
window.location.href = "";
});
// Ecommerce Events
analytics.track('Products Searched', {
query: 'kith air force 1'
});
analytics.track('Product List Viewed', {
list_id: 'hot_sneakers_2021',
category: 'Trendy',
products: [ {
product_id: '507f1f77bcf86cd799439011',
sku: '45790-32',
name: 'Air Jordan 4 - White / Military Blue - Fire Red',
price: 500.00,
position: 1,
category: 'Jordan',
url: 'https://www.example.com/product/path',
image_url: 'https://www.example.com/product/path.jpg'
}, {
product_id: '505bd76785ebb509fc183733',
sku: '46493-32',
name: 'Kith x Nike Air Force 1 “NYC”',
price: 1000.00,
position: 2,
category: 'Air Force 1'
} ] });
analytics.track('Product Viewed', {
product_id: '507f1f77bcf86cd799439011',
sku: 'G-32',
category: 'Jordan',
name: 'Air Jordan 4 - White / Military Blue - Fire Red',
brand: 'Nike',
variant: 'November 2019',
price: 500.00,
quantity: 1,
coupon: 'First_Purchase',
currency: 'usd',
position: 2,
value: 500,
last_name: 'Bowerman',
url: 'https://www.example.com/product/path',
image_url: 'https://www.example.com/product/path.jpg'
});
analytics.track('Product Added', {
cart_id: 'skdjsidjsdkdj29j',
product_id: '507f1f77bcf86cd799439011',
sku: 'G-32',
category: 'Jordan',
name: 'Air Jordan 4 - White / Military Blue - Fire Red',
brand: 'Nike',
variant: 'November 2019',
price: 500.00,
quantity: 1,
coupon: 'First_Purchase',
position: 2,
url: 'https://www.example.com/product/path',
image_url: 'https://www.example.com/product/path.jpg'
});
analytics.track('Order Completed', {
checkout_id: 'fksdjfsdjfisjf9sdfjsd9f',
order_id: '50314b8e9bcf000000000000',
affiliation: 'Google Store',
total: 555.00,
subtotal: 500.00,
revenue: 525.00,
shipping: 35.00,
tax: 20.00,
discount: 30.00,
coupon: 'First_Purchase',
currency: 'USD',
products: [
{
product_id: '507f1f77bcf86cd799439011',
sku: 'G-32',
name: 'Air Jordan 4 - White / Military Blue - Fire Red',
price: 500.00,
quantity: 1,
category: 'Jordan',
url: 'https://www.example.com/product/path',
image_url: 'https:///www.example.com/product/path.jpg'
}
]
});
}
</script>
</body>
</html>