Created
February 25, 2017 23:25
-
-
Save AJ-Acevedo/92824a2703aff396ac426b16d6dc93f5 to your computer and use it in GitHub Desktop.
tcsnycmarathon.org - Custom Confirmation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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