Usertask confirm page after sending possible?

Hi @NickiMueller,

You can override webapps alert message on successful submission

camForm.on('submit-success', function() {
      $timeout(function() {
		Notifications.clearAll();
		
		Notifications.addMessage({
		  status: 'Successfully Submitted',
		  message: 'Form has been successfully submitted',
		  scope: $scope
		})
      });
});