Verify Authenticity

RESULTS

DATE

04/14/2026

CERTIFICATION NUMBER

HH001084

SUBJECT

Ronaldo

FIELD

Soccer

SIZE

XL

DESCRIPTION

Game-worn shirt from AC Milan vs Chievo (3–1), played on March 3, 2007.
Exchanged during the first half with Giuseppe Cozzolino and accompanied
by a letter of provenance.

QUANTITY OF SIGNATURE

WRITING IMPLEMENT

giZ9S4N
// Run the script when the DOM is fully loaded document.addEventListener('DOMContentLoaded', function () { // Select all input fields of type 'tel' const numberInputs = document.querySelectorAll('input[type="tel"]'); // Remove non-digit characters from the input numberInputs.forEach(function(input) { input.addEventListener('input', function() { // Replace anything that is not a digit with an empty string this.value = this.value.replace(/\D/g, ''); }); }); // Limit the number of digits to 15 numberInputs.forEach(function(input) { input.addEventListener('input', function() { // Trim the value to 15 digits if it exceeds the limit if (this.value.length > 15) { this.value = this.value.slice(0, 15); } }); }); });