• min. 8 znaków
  • wielka litera
  • cyfra
  • znak specjalny

Masz już konto? Zaloguj się

📧

Sprawdź swoją skrzynkę e-mail

Na podany adres wysłaliśmy link aktywacyjny.

Nie otrzymałeś wiadomości?
// WeldFolio icon helper — returns inline SVG for use in JS template literals function wfIcon(name, size, cls) { size = size || 16; cls = cls || ''; return ''; } // Re-initialize Lucide icons after dynamic content render (with error guard) function refreshIcons() { try { if (window.lucide) lucide.createIcons(); } catch(e) { /* icon refresh non-critical */ } } // Debounced icon refresh on DOM changes (prevents perf issues from rapid mutations) var _iconTimer = null; var _iconObserver = new MutationObserver(function() { if (_iconTimer) return; _iconTimer = setTimeout(function() { _iconTimer = null; refreshIcons(); }, 100); }); document.addEventListener('DOMContentLoaded', function() { refreshIcons(); _iconObserver.observe(document.body, { childList: true, subtree: true }); });