I have a form in html and I need to fill in the fields and click the "Next" button to send the form by email without the person noticing, since the form continues in the next steps ...
<div class="form-group">
<input id="texto nomeform1" minlength="5" type="text" class="form-control" name="nome" placeholder="Nome Completo*">
</div>
<div class="form-group">
<input id="texto" type="email" class="form-control" name="email" placeholder="Email Válido*">
</div>
<div class="form-group">
<input type="text" class="form-control" id="celular" name="celular" placeholder="Telefone">
</div>
<div class="form-group">
<input type="text" class="form-control" name="sobre" placeholder="Como ficou sabendo sobre festas?">
</div>
<button type="button" name="usrSubmit" class="next action-button enviar_email" id="proximo" disabled value="Próximo"> Próximo</button>
Currently I can already send the information I want to email, but it ends the form ...