-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (162 loc) · 6 KB
/
Copy pathindex.html
File metadata and controls
182 lines (162 loc) · 6 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Makes scalable for smaller screens -->
<meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no'>
<link rel="stylesheet" href="css/style.css">
<!-- Replace these with site's fonts -->
<link href='https://fonts.googleapis.com/css?family=Bitter:400,700|Bree+Serif' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<!-- jQuery Library -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
</head>
<body>
<div id="link-form">
<h1>Campaign Link Builder</h1>
<p>
Lorem ipsum dolor sit amet, qui ad natum docendi consequat, sit denique fabellas in, mei in impedit feugait percipit. Est sumo consequat cu.
</p>
<div id="error-message">
<p>Please recheck your submission for errors.</p>
</div>
<div class="initialurl-section">
<div class="link-build-section">
<label for="url">
<h4>Initial URL</h4>
<span class="required-ast">*</span>
</label>
<p>Paste or type the URL that you wish to link to, please include http:// prefix</p>
<input type="text" id="initialURL" name="initialURL" value="http://" placeholder="" required/>
</div>
</div>
<div class="crm-section">
<div class="link-build-section">
<label>
<h4>CRM System</h4>
</label>
<p>
Lorem ipsum dolor sit amet, qui ad natum docendi consequat, sit denique fabellas in.
</p>
<select id="marketingPlatform" name="marketingPlatform">
<option value="blank">-- Select --</option>
<option value="luminate">Luminate</option>
<!--<option value="salsa">Salsa</option>-->
<option value="enetworks">Engaging Networks</option>
</select>
<div id="luminate" class="hide">
<div class="luminate-source">
<label>
↳ Source
<span class="required-ast">*</span>
</label>
<input type="text" id="lum-source" placeholder="Source" required/>
</div>
<div class="luminate-subsource">
<label>
Sub-Source
</label>
<input type="text" id="lum-subsource" placeholder="(Optional)" required/>
</div>
</div>
<div id="salsa" class="hide">
<label>
↳ Tag
<span class="required-ast">*</span>
</label>
<input type="text" id="salsa-tag" placeholder="Enter tag name" required/>
</div>
<div id="engaging-networks" class="hide">
<label>
↳ Tracking Parameter
<span class="required-ast">*</span>
</label>
<input type="text" id="en-param" placeholder="Enter parameter" required/>
</div>
<div class="clear"></div>
</div>
</div>
<div class="ga-section">
<h4>Google Analytics</h4>
<p>
Lorem ipsum dolor sit amet, qui ad natum docendi consequat, sit denique fabellas in.
</p>
<div class="link-build-section">
<label>
Source
</label>
<p>Select where the link will be placed, if more then one please create additional tracking codes</p>
<select id="marketingSource" name="marketingSource">
<option value="blank">-- Select --</option>
<option value="Facebook">Facebook</option>
<option value="LinkedIn">LinkedIn</option>
<option value="Twitter">Twitter</option>
<option value="GooglePlus">Google Plus</option>
<option value="Pinterest">Pinterest</option>
<option value="Google">Google Search</option>
<option value="Yahoo">Yahoo</option>
<option value="Bing">Bing</option>
<option value="EMail">E-Mail</option>
<option value="Native">Native</option>
<option value="DigitalAd">Digital Ad</option>
<option value="PartnerSite">Partner Site</option>
<option value="PressRelease">Press Release</option>
<option value="Blog">Blog</option>
<option value="Other">Other</option>
</select>
</div>
<div class="link-build-section">
<label>
Medium
</label>
<p>Select the type of marketing</p>
<select id="marketingMedium" name="marketingMedium">
<option value="blank">-- Select --</option>
<option value="Free">Free</option>
<option value="Paid">Paid</option>
</select>
</div>
<div class="link-build-section">
<label for="campaignName">
Name
</label>
<p>Enter the name of your campaign, email, post, etc. Should easily identify where the link was placed. <br/><strong>(no spaces and capitalize each word)</strong></p>
<input type="text" id="campaignName" name="campaignName" value="" placeholder="MyCoolEmailOrPost" required/>
</div>
<div class="link-build-section date-fields">
<label>
Date
</label>
<p>The date the tracking code will be first used</p>
<div class="date-item-hold">
<label for="month">Month</label>
<input id="month" name="month" type="tel" maxlength="2" value="" required/>
</div>
<div class="date-item-hold">
<label for="day">Day</label>
<input id="day" name="day" type="tel" maxlength="2" value="" required/>
</div>
<div class="date-item-hold">
<label for="year">Year</label>
<input id="year" name="year" type="tel" maxlength="4" value="" required/>
</div>
<div class="clear"></div>
</div>
</div><!-- End GA Section -->
<div class="box">
<button id="create" class="form-submit-button">
Create Link
</button>
</div>
<div id="generatedLinkBlock" class="hide">
<label>Your custom URL:</label>
<div id="generated-link-hold">
<input id="generatedLink" readonly>
<button id="copy-button">Copy</button>
</div>
<div id="copy-message"></div>
<div class="clear"></div>
</div>
</div><!-- End Link Form -->
<script src="js/link-builder.js"></script>
</body>
</html>