Détail de ma réparation
Cette page affiche les informations de votre réparation.
Le lien est personnel et sécurisé.
Les informations ci-dessous sont mises à jour automatiquement.
Lien personnel — ne le partagez pas.
Nom du client :
Téléphone :
Email :
Vélo :
Problème :
Statut :
<script>
(function(){
const p = new URLSearchParams(window.location.search);
const map = { nom:'nom', tel:'tel', email:'email', velo:'velo', probleme:'probleme', statut:'statut', token:'token' };
for (const key in map){
const el = document.getElementById(map[key]);
if (!el) continue;
const v = p.get(key);
el.textContent = v ? decodeURIComponent(v) : '';
}
})();
</script>