Skip to content

Commit 9d16423

Browse files
authored
Create index.html
1 parent 555f6ec commit 9d16423

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<html>
2+
<head>
3+
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script>
4+
<script>
5+
function showMailingPopUp() {
6+
dojoRequire(
7+
["mojo/signup-forms/Loader"],
8+
function(L) {
9+
L.start({"baseUrl":"mc.us19.list-manage.com","uuid":"b91b68fd99e2763fe00054f50","lid":"02b2415206","uniqueMethods":true})
10+
}
11+
);
12+
13+
document.cookie = 'MCPopupClosed=;path=/;expires=Thu, 01 Jan 1970 00:00:00 UTC;';
14+
document.cookie = 'MCPopupSubscribed=;path=/;expires=Thu, 01 Jan 1970 00:00:00 UTC;';
15+
}
16+
document.getElementById("open-popup").onclick = function() {showMailingPopUp()};
17+
</script>
18+
</head>
19+
<body>
20+
<button id="open-popup" onclick ="showMailingPopUp(); return false;">Subscribe to our mailing list</button>
21+
22+
<body>
23+
</html>

0 commit comments

Comments
 (0)