-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe.html
124 lines (106 loc) · 3.48 KB
/
subscribe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Discover new rock/metal artists by navigating our website. - subscribe for more information"
/>
<link rel="stylesheet" href="./CSS/main.css" />
<link rel="stylesheet" href="./CSS/subscribe.css" />
<title>Subscribe Page</title>
<!--? FONTS -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Teko:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>Subscribe <span>for the latest news</span></h1>
</header>
<div id="mc_embed_signup">
<form
action="https://live.us1.list-manage.com/subscribe/post?u=6315f79f943612699e119f068&id=61b1dad95c"
method="post"
id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
novalidate
>
<div id="mc_embed_signup_scroll">
<div class="indicates-required">
<span class="asterisk">*</span> required
</div>
<div class="mc-field-group">
<label for="mce-EMAIL"
>Email <span class="asterisk">*</span>
</label>
<input
type="email"
value=""
name="EMAIL"
class="required email"
id="mce-EMAIL"
/>
</div>
<div class="mc-field-group">
<label for="mce-NAME">Name </label>
<input type="text" value="" name="FNAME" class="" id="mce-NAME" />
</div>
</div>
<div id="mce-responses" class="clear">
<div
class="response"
id="mce-error-response"
style="display: none"
></div>
<div
class="response"
id="mce-success-response"
style="display: none"
></div>
</div>
<div style="position: absolute; left: -5000px" aria-hidden="true">
<input
type="text"
name="b_6315f79f943612699e119f068_61b1dad95c"
tabindex="-1"
value=""
/>
</div>
<div class="clear">
<input
type="submit"
value="Subscribe"
name="subscribe"
id="mc-embedded-subscribe"
class="button"
/>
</div>
</div>
</form>
</div>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'>
const errorMessage = document.querySelector(".mce_inline_error");
errorMessage.innerContent = "OMG";
// if(errorMessage){
// }
</script>
<script type='text/javascript'>
(function($) {
window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';
}(jQuery));
var $mcj = jQuery.noConflict(true);
</script>
<script src="app.js"></script>
</body>
</html>
<!-- * designed and developed by Andre Ferreira @ www.andreferreiradev.com * -->