function checkformPass() {
$("#msg").html("");
var formData = {
'email': $('input[name=email]').val(),
};
$.ajax({
type: 'POST',
url: 'https://gestor.showtecnologia.com/sistema/newapp/api/reset_senha_usuario',
data: formData,
dataType: 'json',
encode: true
}).done(function (data) {
if (data.success) {
$("#formPass").submit();
} else {
// $("#msg").html(data.msg);
alert(data.msg);
}
});
event.preventDefault();
}