Advertisement
belleriel

robux

May 18th, 2018
2,206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. <div id="Body" class="body-width">
  2. <div id="TosAgreementInfo" data-terms-check-needed="False">
  3. </div>
  4.  
  5. <script type="text/javascript">
  6. var Roblox = Roblox || {};
  7. Roblox.GameCard = Roblox.GameCard || {};
  8. Roblox.GameCard.RedeemGamecardEndpoint = "https://billing.roblox.com/v1/gamecard/redeem";
  9. Roblox.GameCard.Resources = {
  10. invalidPin: "Invalid PIN.",
  11. unrecognizedPin: "Unrecognized PIN format.",
  12. alreadyRedeemed: "This card has already been redeemed.",
  13. invalidCard: "This card is invalid.",
  14. unrecognizedMerchant: "We currently do not support the merchant you purchased this card from, please contact Customer Service.",
  15. success: "",
  16. deactivatedCard: "This card is not active.",
  17. suspendedCard: "This card is suspended.",
  18. gatewayDown: "The payment gateway is down. Please try the transaction again later and contact Customer Service if the problem persists.",
  19. unexpectedError: "An unexpected error occured. Please try your request again later.",
  20. };
  21. Roblox.GameCard.MessageMappings = {
  22. 1: Roblox.GameCard.Resources.alreadyRedeemed,
  23. 2: Roblox.GameCard.Resources.invalidPin,
  24. 3: Roblox.GameCard.Resources.gatewayDown
  25. };
  26. </script>
  27. <h1><span>Redeem Roblox Promotions</span></h1>
  28. <div id="RedeemContainer">
  29. <div id="Instructions">
  30. <div class="header">How to Use</div>
  31. <div class="listitem">Have you received a Roblox promotional code from one of our many events or give-aways?</div>
  32. <div class="listitem">This is the place to claim your goods. Enter the promotional code in the section to the right.</div>
  33. <div class="footnote">Promotional codes may expire, or only be active for a short period of time.</div>
  34. </div>
  35. <div style="float:left;">
  36. <div id="CodeInput">
  37. <div class="header">Enter Your Code:</div>
  38. <input id="pin" type="text">
  39. <span class="btn-primary btn-small" onclick="Roblox.GameCard.redeemCode()">
  40. Redeem
  41. </span>
  42. <img id="busy" src="https://images.rbxcdn.com/21e504e643e6c21e0c90e5a1b03325f9.gif" alt="Loading" style="visibility: hidden; display: none;">
  43. </div>
  44. <div class="ResultContainer">
  45. <div id="success" class="ResultSuccessBox" style="display: none;"><img src="https://images.rbxcdn.com/6acd50d6f06cb4801309f2334d6728ab.png" alt="Success"><span id="SuccessMessage" class="ResultBoxTextAligned"></span></div>
  46. <div id="error" class="ResultErrorBox" style="display: block;"><img src="https://images.rbxcdn.com/6fde87e250e2921967a1de2e878449ef.png" alt="Failure"><span id="errorText" class="ResultBoxTextAligned">Invalid promo code.</span></div>
  47. </div>
  48. </div>
  49. </div>
  50. <div style="clear: both"></div>
  51. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement