1
I have the form below and I need two actions:
Action 1:
Keep the action of the form that sends data to the form website (as it is today - see form below)
Action 2:
Send data through a URL that will have included in the URL the data filled in the form, example: &name=registered name&email=registered [email protected]
Where &name
is the value entered on the forms and &email
the completed e-mail in the form.
BS.: I need to do this action 2, because I want to send the email data and name to a second site through information in the URL. The other site already accepts this type of submission by URL "&name=nomecadastrado&[email protected]"
.
How can I do that?
The form I have that was made available by the tool is this below:
<!-- Formulário -->
<form action="https://leadlovers.com/Pages/Index/112646" method="post" target='_blank'>
<input id="id" name="id" type="hidden" value="112646" />
<input id="pid" name="pid" type="hidden" value="3490466" />
<input id="list_id" name="list_id" type="hidden" value="112646" />
<input id="provider" name="provider" type="hidden" value="leadlovers" />
<label for="name">Nome:</label>
<input class="form-control" id="name" name="name" placeholder="Informe o seu nome" type="text" />
<label for="email">E-mail:</label>
<input class="form-control" id="email" name="email" placeholder="Informe o seu email" type="text" />
<button class="btn btn-danger" style="margin-bottom:5px;" type="submit">Quero receber</button>
<input type="hidden" id="source" name="source" value="" />
<img src="https://llimages.com/redirect/redirect.aspx?A=V&p=3490466&m=112646" style="display: none;" />
</form>
Form you have that was provided by the tool? You can change the code of this form?
– Aline
action 1 method post - action="https://leadlovers.com/Pages/Index/112646" and action 2 for another method get? url is that?
– user60252