Category
Year
Format
Client
Showing  —  projects
Loading catalog…

Let's talk

Tell me about your project and I'll get back to you shortly.

// ── Token Auth ──────────────────────────────────────────────────────────── (function() { const API = 'https://visual-refs-server-production-74aa.up.railway.app'; const KEY = 'ig_work_token'; function getToken() { const p = new URLSearchParams(window.location.search); if (p.get('token')) { localStorage.setItem(KEY, p.get('token')); // Clean URL history.replaceState(null, '', window.location.pathname); } return localStorage.getItem(KEY); } function showBlocked() { document.body.innerHTML = `
IG

Acceso restringido

This page is private

This portfolio is only accessible via a personal link.
Contact info@ismaelgonzalez.tv to request access.

`; } const token = getToken(); if (!token) { showBlocked(); return; } fetch(API + '/work/validate?token=' + encodeURIComponent(token)) .then(r => r.json()) .then(data => { if (!data.valid) { localStorage.removeItem(KEY); showBlocked(); } // If valid, page loads normally }) .catch(() => { // If Railway is down, allow access (fail open - better UX) }); })();