Skip to content

Instantly share code, notes, and snippets.

@AJ-Acevedo
Created February 25, 2017 23:25
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 AJ-Acevedo/92824a2703aff396ac426b16d6dc93f5 to your computer and use it in GitHub Desktop.
Save AJ-Acevedo/92824a2703aff396ac426b16d6dc93f5 to your computer and use it in GitHub Desktop.
tcsnycmarathon.org - Custom Confirmation
<style>
.custom-confirmation {
margin-top: -4em;
}
#confirmed-page {
margin-top: -4em;
}
</style>
<script>
function moveIt() {
var element = document.createElement("div");
element.className = 'custom-confirmation';
element.innerHTML = "<h1>IMPORTANT</h1><p>If you purchased tickets for XXX XXX or XXX you must bring you confirmation email to the Expo to pick up your credentials</p><p>If you bought tickets for XXX you must bring your confirmation email to gain entry</p>";
document.getElementById('confirmed-page').appendChild(element);
}
moveIt();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment