I have a form in Asp.Net MVC that terminates as follows
<div class="modal-footer">
<input class="btn btn-primary" type="submit" value="Salvar" />
<a class="btn btn-default" onclick="FechaModal();">Cancelar</a>
</div>
I need as soon as the user clicks the 'Save' button pop up or alert with information to him and with the button 'aware' and 'cancel'. The information then of the form will only be sent to the bank after the confirmation of the aware in the pop up and not when the user clicks on the initial save. What is the simplest way to do this?