Hi there,
I am submitting custom form data using action attribute. I would like to pass other parameters for example hutk mentioned here( https://legacydocs.hubspot.com/docs/methods/forms/submit_form ). How can I achieve this? Form submission is working successfully. But I am getting these notifications after successful form submission. Could you please let me know how can I solve this?
Thank you!
<form name="totalCalculator" id="totalCalculator" action="https://forms.hubspot.com/uploads/form/v2/[[ your_portal_id ]]/[[ your_form_id ]]" method="post">
<input type="text" id="firstname" name="firstname" placeholder="Your First Name">
<input type="text" id="lastname" name="lastname" placeholder="Your Last Name">
<input type="text" id="email" name="email" placeholder="Your Email Address">
<input type="price" id="price" name="price">
<input type="quantity" id="quantity" name="quantity">
<div class="total">
Your total will be <span id="total"></span>
</div>
<button id="calculate">Calculate</button>
</form>

