Same idea as the hidden field, but the placeholder lives in the form's action.
Useful when the receiving endpoint reads query parameters and you would rather not add a field.
click_id=--CLICK-ID--; after,
the real value is in its place.
--CLICK-ID-- in the address bar.
<form action="/thank-you.html?click_id=--CLICK-ID--" method="get"
name="optin" data-payout="10">
<input type="text" name="fname">
<input type="email" name="email">
<input type="submit" value="Submit">
</form>
data-payout="10" on the form declares a value for
this lead — handy when you want the conversion to carry revenue rather than just a count.