Use AngularJs control form submit, with POST method and page forwarding.
npm install git+https://github.com/gengen1988/angular-form-util.git
angular.module('app', ['form-util'])
.controller('Controller', Controller);
function Controller($scope, post) {
$scope.submit = function(data) {
post('http://www.google.com', data);
}
}