<?php

$conta = json_decode(file_get_contents("php://input"));
if (Conta::salvar($conta)) {
    echo "SUCCESS";
} else {
    echo "ERROR";
}