An error has occurred

{{terminalError}}

Get
The Beast
In Your Inbox

Sign up now to get The Cheat Sheet delivered twice daily to your inbox.

By Clicking "Subscribe" you agree to have read the Terms of Use and Privacy Policy

$('#close-error-btn').click(function() { $('#error-message-wrapper').hide(); }); window.addEventListener('message', function(e) { if (typeof e.data.piano != 'undefined') { var result = e.data.piano; if (!result.success) { $('#error-message-wrapper').show(); $('#error-message').text(result.message); $('.CheatsheetAdhesionCTA__input').addClass('error'); } else { $('.CheatsheetAdhesionCTA__left').remove(); $('.CheatsheetAdhesionCTA__right').remove(); $('.CheatsheetAdhesionCTA__button').css('display', 'flex'); var thanksClass = document.createElement('div'); thanksClass.className = 'CheatsheetAdhesionCTA__thanks'; $('.CheatsheetAdhesionCTA__main').append(thanksClass); var thanksSpan = document.createElement('span'); thanksSpan.innerHTML = 'Thank You '; thanksSpan.className = 'CheatsheetAdhesionCTA__red'; var subscribingSpan = document.createElement('span'); subscribingSpan.innerHTML = 'for Subscribing'; $(thanksClass).append(thanksSpan, subscribingSpan); } } return; }, false);