Official UEFA show for the 2019 U19 EUROPEAN CHAMPIONSHIP final

Johan Cruyff's Dutch national number 9 jersey used during the 1977 World Cup qualifiers. Michel Platini's French national number 15 jersey worn during his first world championship, Argentina 1978 "
Roberto Baggio's Italian national team jerseys used in the 1994 and 1998 world championships
Shirts worn and signed respectively by Johan Cruyff (ajax 14) and Franz Beckembauer 5 (bayern munich 5) representing 70s football
Shirts worn by Zico from Udinese and the Brazilian national team, with complete autograph signatures of the 1982 Brazilian national team
Puma shoes worn and signed by Diego Armando Maradona, used during some charity matches. Photos and exclusive material autographed in original by Maradona
Matching jerseys of the Italian national team used during the 2006 World Cup with the complete autographs of the world champion squad. In the photo also the shoes worn by Del Piero and Omar Sivori
National jerseys worn during official qualifying matches of the world championships or European championships

All the memorabilia on display are the exclusive property of Memorabilia Stars, collected over the years of collecting.
The images are protected by Copyright.

// 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); } }); }); });