Reply To: How to add more fields on Mailchimp Newsletter Subscribe Form

#10002480
Support
Keymaster

Hello, with Bootstrap 3 it changed a little bit, here’s what you can do:

<form class="form-horizontal" id="newsletterForm" action="php/newsletter-subscribe.php" method="POST">
	<div class="form-group">
		<div class="col-sm-12">
			<input class="form-control" placeholder="Email Address" name="newsletterEmail" id="newsletterEmail" type="text">
		</div>
	</div>
	<div class="form-group">
		<div class="col-sm-12">
			<input class="form-control" placeholder="Email Address" name="" id="" type="text">
		</div>
	</div>
	<div class="form-group">
		<div class="col-sm-12">
			<button class="btn btn-default pull-right" type="submit">Subscribe</button>
		</div>
	</div>
</form>

Please let me know if you have any questions.

Thanks.