Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

email-sub

email sub short

// Add Shortcode
function email_sub_short() {

	ob_start();
	?><div id="form-div">
	        <h3 id="formSuccess">All Things Spartan, Straight to Your Inbox</h3>
	        <form id="email_subscribe">
	             <input id="signupEmail" name="signupEmail" type="email" placeholder="Type your email address here..." required="required" />
	            <input id="signupSubmit" type="submit" value="Send" />
	        </form>
	 </div><?php
	return ob_get_clean();
	

}
add_shortcode( 'email-subscribe', 'email_sub_short' );