9c57b4b37a
-Removed the ability to claim an address that has 0 transactions -The "Claim" button is now disabled after submitting to help prevent double submissions
224 lines
12 KiB
Plaintext
224 lines
12 KiB
Plaintext
extends layout
|
|
|
|
block content
|
|
- var selected_captcha_object = null
|
|
- var selected_captcha_name = ''
|
|
if settings.claim_address_page.enable_captcha == true
|
|
each captcha, name in settings.captcha
|
|
if selected_captcha_object == null && captcha != null && captcha.enabled == true
|
|
- selected_captcha_object = captcha
|
|
- selected_captcha_name = name
|
|
script.
|
|
$(document).ready(function () {
|
|
$('#claimInstructions').on('show.bs.collapse', function () {
|
|
$('#showClaimInstructions').html('<i class="fa-solid fa-angle-down" style="margin-right:5px;"></i><span>Hide claim instructions</span>');
|
|
}).on('hide.bs.collapse', function () {
|
|
$('#showClaimInstructions').html('<i class="fa-solid fa-angle-up" style="margin-right:5px;"></i><span>Show claim instructions</span>');
|
|
}).on('shown.bs.collapse', function () {
|
|
fixFooterHeightAndPosition();
|
|
}).on('hidden.bs.collapse', function () {
|
|
fixFooterHeightAndPosition();
|
|
});
|
|
$('#claimForm').on('submit', function (e) {
|
|
e.preventDefault();
|
|
var address = $('input#address').val();
|
|
var message = $('input#message').val();
|
|
var signature = $('input#signature').val();
|
|
var recaptcha2 = ($('#g-recaptcha-response').length > 0 ? $('#g-recaptcha-response').val() : '');
|
|
var hcaptcha = ($('textarea[name^="h-captcha-response"]').length > 0 ? $('textarea[name^="h-captcha-response"]').val() : '');
|
|
|
|
if (address == null || address.trim().length == 0) {
|
|
showClaimAlert('warning', 'Please enter the wallet address you wish to claim', false);
|
|
$('input#address').focus();
|
|
} else if (signature == null || signature.trim().length == 0) {
|
|
showClaimAlert('warning', 'Please enter the signature value from your wallet software', false);
|
|
$('input#signature').focus();
|
|
} else if (
|
|
(
|
|
'#{selected_captcha_name}' == 'google_recaptcha2' &&
|
|
'#{settings.captcha.google_recaptcha2.captcha_type}' == 'checkbox' &&
|
|
$('#g-recaptcha-response').length > 0 &&
|
|
recaptcha2 == ''
|
|
) ||
|
|
(
|
|
$('textarea[name^="h-captcha-response"]').length > 0 &&
|
|
hcaptcha == ''
|
|
)
|
|
) {
|
|
showClaimAlert('warning', 'The captcha validation has not been set', false);
|
|
} else {
|
|
$('button.btn-success').attr('disabled', true);
|
|
|
|
if ('#{selected_captcha_name}' == 'google_recaptcha2' && '#{settings.captcha.google_recaptcha2.captcha_type}' == 'invisible') {
|
|
grecaptcha.execute();
|
|
} else if ('#{selected_captcha_name}' == 'google_recaptcha3') {
|
|
grecaptcha.ready(function() {
|
|
grecaptcha.execute('#{(selected_captcha_name != '' && settings.captcha[selected_captcha_name].site_key != null ? settings.captcha[selected_captcha_name].site_key : '')}', {action: 'submit'}).then(function(token) {
|
|
submitForm(token);
|
|
});
|
|
});
|
|
} else if (recaptcha2 != '') {
|
|
submitForm(recaptcha2);
|
|
} else if (hcaptcha != '') {
|
|
submitForm(hcaptcha);
|
|
} else {
|
|
submitForm('');
|
|
}
|
|
}
|
|
});
|
|
if ('!{hash}' != 'null' && '!{hash}' != '') {
|
|
$('<div id="claimAlert"></div>').insertBefore('#claimForm');
|
|
$('#claimAlert').html(generateAlertHTML('info', true, ('!{claim_name}' == '' ? 'Unc' : 'C') + 'laimed address', '<strong>!{hash}</strong> is currently ' + ('!{claim_name}' == '' ? 'un' : '') + 'claimed' + ('!{claim_name}' == '' ? '' : ' as <strong>' + displayAsText('!{claim_name}') + '.</strong>')));
|
|
}
|
|
if (#{settings.shared_pages.page_header.page_title_image.enable_animation} == true && #{settings.claim_address_page.page_header.show_img} == true)
|
|
startRotateElement('img#header-img');
|
|
});
|
|
function displayAsText(str) {
|
|
return str.replace(/</g, '<').replace(/>/g, '>');
|
|
}
|
|
function showClaimAlert(claimClass, warnMsg, removedClaim) {
|
|
if ($('#claimAlert').length == 0)
|
|
$('<div id="claimAlert"></div>').insertBefore('#claimForm');
|
|
$('#claimAlert').html(generateAlertHTML(claimClass, true, (claimClass == 'success' ? (removedClaim ? 'Address claim removed successfully' : 'Address claimed successfully') : (claimClass == 'danger' ? 'Failed to claim address' : 'Required field missing')), (claimClass == 'success' ? '<strong>' + $('input#address').val() + '</strong> will now be referred to as <strong>' + (removedClaim ? $('input#address').val() : displayAsText($('#message').val())) + '</strong> throughout the website' : warnMsg) + '.'));
|
|
fixFooterHeightAndPosition();
|
|
}
|
|
function generateAlertHTML(alertClass, allowDismiss, headerText, msgText) {
|
|
return '<div class="alert alert-' + alertClass + (allowDismiss ? ' alert-dismissible fade show' : '') + '" role="alert">' +
|
|
(allowDismiss ? '<button type="button" class="btn-close" data-bs-dismiss="alert"></button>' : '') +
|
|
'<div' + (msgText == null || msgText == '' ? '' : ' class="cardSpacer"') + '>' +
|
|
'<span class="fa-solid ' + (alertClass == 'success' ? 'fa-circle-check' : (alertClass == 'danger' ? 'fa-circle-exclamation' : (alertClass == 'info' ? 'fa-circle-info' : 'fa-triangle-exclamation'))) + '" style="margin-right:5px"></span>' +
|
|
'<strong>' + headerText + '</strong>' +
|
|
'</div>' +
|
|
(msgText == null || msgText == '' ? '' : '<span>' + msgText + '</span>') +
|
|
'</div>';
|
|
}
|
|
function submitForm(captchaData) {
|
|
const url = '/claim';
|
|
|
|
let postData = {
|
|
'address': $('input#address').val(),
|
|
'message': $('input#message').val(),
|
|
'signature': $('input#signature').val()
|
|
};
|
|
|
|
if ('#{selected_captcha_name}' != '' && captchaData != '')
|
|
postData['#{selected_captcha_name}'] = captchaData;
|
|
|
|
$.ajax({
|
|
type: 'post',
|
|
url: url,
|
|
data: postData
|
|
})
|
|
.done(function(data) {
|
|
showClaimAlert((data.status == 'success' ? 'success' : 'danger'), data.message, (data.status == 'success' && message == ''));
|
|
|
|
if (
|
|
'#{selected_captcha_name}' == 'google_recaptcha2' &&
|
|
'#{settings.captcha.google_recaptcha2.captcha_type}' == 'checkbox'
|
|
) {
|
|
// clear out the captcha to allow the form to be submitted again
|
|
grecaptcha.reset();
|
|
}
|
|
|
|
$('button.btn-success').attr('disabled', false);
|
|
});
|
|
}
|
|
function onSubmit(token) {
|
|
submitForm(token);
|
|
|
|
// ensure the onSubmit event can fire again without needing to reload the page in the event that the server returns an error and the form must be submitted again
|
|
grecaptcha.reset();
|
|
|
|
$('button.btn-success').attr('disabled', false);
|
|
}
|
|
.col-xs-12.col-md-12
|
|
if settings.claim_address_page.page_header.show_img == true || settings.claim_address_page.page_header.show_title == true || settings.claim_address_page.page_header.show_description == true
|
|
#page-header-container(style='align-items:' + (settings.claim_address_page.page_header.show_img == true && settings.claim_address_page.page_header.show_title == true && settings.claim_address_page.page_header.show_description == true ? 'flex-start' : 'center'))
|
|
if settings.claim_address_page.page_header.show_img == true
|
|
#header-img-container
|
|
img#header-img(src=(settings.shared_pages.page_header.page_title_image == null || settings.shared_pages.page_header.page_title_image.image_path == null || settings.shared_pages.page_header.page_title_image.image_path == '' ? '/img/page-title-img.png' : settings.shared_pages.page_header.page_title_image.image_path))
|
|
#page-title-container
|
|
if settings.claim_address_page.page_header.show_title == true
|
|
h3#page-title #{settings.locale.claim_title.replace('{1}', settings.coin.name)}
|
|
if settings.claim_address_page.page_header.show_description == true
|
|
if settings.claim_address_page.page_header.show_title != true
|
|
#page-title-container
|
|
.sub-page-header.text-muted=settings.locale.claim_description.replace('{1}', settings.coin.name)
|
|
else
|
|
.sub-page-header.text-muted=settings.locale.claim_description.replace('{1}', settings.coin.name)
|
|
.cardSpacer.clearfix
|
|
.card.card-default.border-0.cardSpacer
|
|
.card-header
|
|
strong Claim Wallet Address
|
|
.card-body
|
|
a#showClaimInstructions.badge.bg-primary(href='#claimInstructions', style='font-size:100%;margin-bottom:15px;', data-bs-toggle='collapse' role='button' aria-expanded='false' aria-controls='claimInstructions')
|
|
i.fa-solid.fa-angle-up(style='margin-right:5px;')
|
|
span Show claim instructions
|
|
div#claimInstructions.collapse
|
|
div.alert.alert-primary
|
|
div
|
|
span Use the
|
|
span.fw-bold Sign Message
|
|
span feature from your
|
|
span.fw-bold #{settings.coin.name}
|
|
span wallet to verify ownership of a wallet address that belongs to you.
|
|
br
|
|
div Enter the following data into the wallet software:
|
|
br
|
|
div
|
|
span.fw-bold Address:
|
|
if hash == null || hash == ''
|
|
span=' <wallet address from the form below>'
|
|
else
|
|
span #{hash}
|
|
div
|
|
span.fw-bold Message:
|
|
span=' <display name from the form below>'
|
|
br
|
|
div
|
|
span Click the
|
|
span.fw-bold Sign Message
|
|
span button in the wallet, and copy/paste the resulting
|
|
span.fw-bold Signature
|
|
span at the bottom of this form.
|
|
br
|
|
div
|
|
span Finally, click the
|
|
span.fw-bold Claim
|
|
span button below to claim your address, which will display your custom display name instead of the default wallet address on this site.
|
|
br
|
|
div
|
|
span.fw-bold NOTE:
|
|
span You can update your claimed address at any time, as often as you wish. To remove a previously claimed display name, simply sign a blank message to return the address back to its original value.
|
|
form#claimForm
|
|
.form-group
|
|
fieldset.entryField
|
|
label.form-label(for='address') Wallet Address
|
|
if hash == null || hash == ''
|
|
input#address.form-control(type='text', maxlength='70')
|
|
else
|
|
input#address.form-control(type='text', value=hash, readonly='readonly', maxlength='70')
|
|
.form-group
|
|
fieldset.entryField
|
|
label.form-label.mt-3(for='message') Display Name
|
|
input#message.form-control(type='text', placeholder='Display Name', maxlength='50')
|
|
.form-group
|
|
fieldset.entryField
|
|
label.form-label.mt-3(for='signature') Signature
|
|
input#signature.form-control.mb-3(type='text', placeholder='Signature', maxlength='100')
|
|
if settings.claim_address_page.enable_captcha == true && selected_captcha_object != null
|
|
case selected_captcha_name
|
|
when 'google_recaptcha2'
|
|
if settings.captcha.google_recaptcha2.captcha_type == 'invisible'
|
|
div#recaptcha.g-recaptcha(data-sitekey=settings.captcha[selected_captcha_name].site_key, data-callback='onSubmit' data-size='invisible')
|
|
else
|
|
.form-group
|
|
fieldset.entryField
|
|
div(class='g-recaptcha mb-3', data-sitekey=settings.captcha[selected_captcha_name].site_key)
|
|
when 'hcaptcha'
|
|
.form-group
|
|
fieldset.entryField
|
|
div.h-captcha(data-sitekey=settings.captcha[selected_captcha_name].site_key)
|
|
.form-group
|
|
fieldset.entryField
|
|
button.btn.btn-success(type='submit') Claim |