-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewsletterSignup.php
36 lines (36 loc) · 1.91 KB
/
newsletterSignup.php
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
<div class="wrapper-newsletter">
<aside>
<div id="newsletter">
<div class="container">
<form class="newsletter-form" method="get" action="#">
<div class="row gx-4 gy-3">
<div class="col-12">
<h2>Email Newsletter Sign-Up</h2>
</div>
<div class="col-12 col-lg-6">
<label for="name">Your Name</label>
<input type="text" class="newsletter-text first" id="name" name="full_name">
</div>
<div class="col-12 col-lg-6">
<label for="email">Your Email</label>
<input type="text" class="newsletter-text" id="email" name="email">
</div>
<div class="col-12">
<label for="newsletter-consent" class="make-pretty-checkbox">
<input type="checkbox" id="newsletter-consent" name="newsletter-consent">
<span class="checkmark"></span>
<span class="description">
Please tick this box if you wish to receive marketing information from us. Please see our <a href="#">Privacy Policy</a> for more information on how we use your data.
</span>
</label>
</div>
<div class="col-12">
<a href="#"><div class="newsletter-button">Subscribe</div></a>
</div>
</div>
</form>
</div>
</div>
</aside>
</div>
</div>