www.wintrumpprizes.com
Open in
urlscan Pro
13.225.78.43
Public Scan
Submitted URL: http://www.wintrumpprizes.com/
Effective URL: https://www.wintrumpprizes.com/nftint/nftsweeps/register
Submission: On December 15 via manual from US — Scanned from DE
Effective URL: https://www.wintrumpprizes.com/nftint/nftsweeps/register
Submission: On December 15 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMName: register_form — POST register
<form action="register" id="register_form" name="register_form" class="pe-form vertical" method="post" autocomplete="off">
<input type="hidden" name="referrerID" value="">
<input type="hidden" name="site_notice" value="1">
<div id="user-form-section">
<div id="form-section">
<fieldset>
<legend>Opt-ins</legend>
<div id="promo_codeID_er" class="form-item form-item-text clearfix">
<span class="form-label"><label><span class="required"></span>Sweepstakes Code </label></span>
<span class="form-input"><input type="text" name="promo_codeID" maxlength="25" value=""></span>
</div>
<script>
/**
* validate_text_promo_codeID ( ell, mandatory ); Checks for: value
**/
function validate_text_promo_codeID(ell, mandatory) {
var errorMsg = {
en_CA: ["Please enter your Sweepstakes Code.", "Your Sweepstakes Code is not valid."],
en_US: ["Please enter your Sweepstakes Code.", "Your Sweepstakes Code is not valid."],
en_UK: ["Please enter your Sweepstakes Code.", "Your Sweepstakes Code is not valid."],
fr_CA: ["Entrez votre Sweepstakes Code, s'il vous plaît.", "Votre Sweepstakes Code n'est pas valide."],
es_US: ["Escriba su Sweepstakes Code, por favor.", "Su Sweepstakes Code no es válido."]
};
var obj = {
pass: true,
error: false,
mandatory: false
};
if (mandatory == 1) {
obj.mandatory = true;
// init tests values
var hasValue = FormValidator.hasValue(ell.value);
// check if has a value
if (!hasValue) {
obj.pass = false;
obj.error = errorMsg['en_US'][0];
}
}
ell.value = ell.value.toUpperCase();
return (obj);
};
</script>
<div id="rules_er" class="form-item form-item-checkbox clearfix top-label">
<span class="form-input"><label><input type="checkbox" name="rules" value="1" class="checkbox"> <span class="required"></span>I agree to accept and abide by the
<a href="https://collecttrumpcards.com/official-sweepstakes-rules" target="_blank">Official Rules</a>.</label></span>
</div>
<script>
/**
* validate_check_rules (obj,size,mandatory);
**/
function validate_rules(ell, mandatory) {
var errorMsg = {
en_CA: ["You must agree to accept and abide by the Official Rules to enter this contest."],
en_US: ["You must agree to accept and abide by the Official Rules to enter this contest."],
en_UK: ["You must agree to accept and abide by the Official Rules to enter this contest."],
fr_CA: ["Vous devez accepter les Official Rules de ce concours."],
es_US: ["Debes estar de acuerdo en aceptar y acatar la Official Rules para participar en este concurso."]
};
var obj = {
pass: true,
error: false,
mandatory: false
};
if (mandatory == 1) {
obj.mandatory = true;
// init tests values
var isChecked = FormValidator.isChecked(ell);
// check if has a value
if (!isChecked) {
obj.pass = false;
obj.error = errorMsg['en_US'][0];
};
};
return (obj);
};
</script>
</fieldset>
<fieldset>
<legend>Recaptcha</legend>
<div id="recaptcha_response_field_er" class="form-item clearfix">
<div class="form-label"><label><span class="required">*</span>Are you human?</label></div>
<div class="form-input rCta" style="width: 728px;">
<div id="rCta-frame" style="width: 728px;">
<div id="g-recaptcha" class="g-recaptcha" data-sitekey="6Ld9VEMjAAAAAAgN0DNJq9Zw5RO_eJuC2-J2ZxJf">
<div style="width: 304px; height: 78px;">
<div><iframe title="reCAPTCHA"
src="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6Ld9VEMjAAAAAAgN0DNJq9Zw5RO_eJuC2-J2ZxJf&co=aHR0cHM6Ly93d3cud2ludHJ1bXBwcml6ZXMuY29tOjQ0Mw..&hl=en&v=pn3ro1xnhf4yB8qmnrhh9iD2&theme=light&size=normal&cb=8hku91669tg8"
width="304" height="78" role="presentation" name="a-les2kco17s97" frameborder="0" scrolling="no"
sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe></div><textarea id="g-recaptcha-response" name="g-recaptcha-response"
class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
</div><iframe style="display: none;"></iframe>
</div>
<input type="hidden" name="recaptcha_response_field">
</div>
</div>
</div>
<script>
var recaptcha_is_invisible = false;
/**
* validate_api_recaptcha (obj, mandatory); Checks for: value.
**/
function validate_api_recaptcha(ell, mandatory) {
var errorMsg = {
en_CA: ["You did not complete the security challenge."],
en_US: ["You did not check the I'm not a robot box."],
en_UK: ["You did not complete the security challenge."],
fr_CA: ["Taper les mot(s) de sécurité s'il vous plaît"],
es_US: ["Introduzca las palabra(s) de seguridad por favor"]
};
var obj = {
pass: true,
error: false,
mandatory: false
};
if (recaptcha_is_invisible) {
//recaptcha is not visible
var retry = $("div#recaptcha_response_field_er").is(":visible");
if (retry) {
onRecaptchaAgain();
obj.pass = false;
obj.error = errorMsg['en_US'][0];
};
} else {
var gTest = grecaptcha.getResponse();
// changed for recapcha 2.0
this.formField = grecaptcha.getResponse();
if (mandatory == 1) {
obj.mandatory = true;
var isChecked = (gTest.length !== 0 || gTest.length);
// check if has a value
if (!isChecked) {
obj.pass = false;
obj.error = errorMsg['en_US'][0];
};
};
};
return (obj);
};
/**
* mobile specific recaptcha display code
**/
$(window).resize(function() {
setSameWidth();
});
const setSameWidth = function() {
var setWidth = $(".g-recaptcha").width();
$("#rCta-frame").width(setWidth);
$(".rCta").width(setWidth);
};
setSameWidth();
</script>
</fieldset>
</div>
<div class="form-button">
<div id="submit" class="button client">Submit</div>
</div>
</div>
</form>
Text Content
-->Enter Your Trump Sweepstakes Code ENTER YOUR TRUMP SWEEPSTAKES CODE Opt-ins Sweepstakes Code I agree to accept and abide by the Official Rules. Recaptcha *Are you human? Submit © 2022 NFT INT, LLC. All Rights Reserved. NO PURCHASE NECESSARY. Void where prohibited. Open to legal residents of the 50 U.S. and D.C. 18 years or older and age of majority. Entry requests available beginning on 11/28/2022 at 12:01 a.m. ET until 1/18/2023 at 11:59 p.m. ET and must be entered between December 8, 2022 and February 2, 2023. Prize/Odds: Total ARV of all prizes $54,695. Odds of winning depend on the total number of eligible entries received. Subject to Official Rules located at www.CollectTrumpCards.com. Sponsor: NFT INT LLC, 6300 Sagewood Drive, Suite 427, Park City, UT 84098. Administrator: National Sweepstakes Company, LLC, 1143 East Union St, Newark, NY 14513. NFT INT LLC is not owned, managed or controlled by Donald J. Trump, The Trump Organization, CIC Digital LLC or any of their respective principals or affiliates. NFT INT LLC uses Donald J. Trump's name, likeness and image under paid license from CIC Digital LLC, which license may be terminated or revoked according to its terms. The Digital Trading Cards and any related revenue or expenditures are not authorized or approved by a political committee or candidate. Terms and Conditions | Privacy Policy | Help word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1 mmMwWLliI0fiflO&1