Skip to content

Instantly share code, notes, and snippets.

@pbzona
Created April 20, 2018 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbzona/f72f2e491ceefdf845df9a9cf32d3574 to your computer and use it in GitHub Desktop.
Save pbzona/f72f2e491ceefdf845df9a9cf32d3574 to your computer and use it in GitHub Desktop.
Displaying success or error page
fetch(lambdaRequest)
.then(response => {
window.location.replace('https://yoursite.com/success-page');
})
.catch(err => {
window.location.replace('https://yoursite.com/error-page');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment