I’m at the end of my wits. Why is this form not working?
Any insights greatly appreciated.
<section id="newsletter">
<h2>Subscribe to our newsletter!</h2>
<form name="newslettersubscription" method="POST" data-netlify="true">
<div class="row">
<div class="col-12">
<label for="email">Email Address</label>
</div>
</div>
<div class="row">
<div class="col-12">
<input type="email" id="email" name="email" placeholder="you@example.com" required/>
</div>
</div>
<div class="text-center">
<button type="button" class="btn btn-warning" aria-label="Submit">Submit</button>
</div>
</form>
</section>