Custom Form
-
Hi,
i try to use a custom form.
I having this piece of code
<form> <div class="left-column col-sm-push-1 col-sm-7 col-xs-12"> <input type="email" required="" size="30" name="ne" class="newsletter-email"> </div> <div class="right-column col-sm-4 col-xs-12"> <input type="submit" value="Subscribe" class="newsletter-submit"> </div> </form>
And use this PHP Code.
`<?php if (function_exists(‘newsletter_form’)) newsletter_form(1); ?>’The Form Renders with the input Field and the Submit button but the form tag ist empty. Its just <form> and not something like <form onsubmit=”return newsletter_check(this)” action=”https://domain.loc/?na=s” method=”post”>
Do i have to set the onsubmit, action also in my custom html form?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom Form’ is closed to new replies.