-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 754 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/jpeg" href="/logo-td.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#011F36" />
<title>TD Jogos — Tributo Devido</title>
</head>
<body>
<div id="root"></div>
<script>
// Captura a URL de retorno do OAuth ANTES de qualquer JS React rodar
try {
if (location.hash || location.search) {
localStorage.setItem('__td_last_url', location.href);
console.log('[td-debug] URL capturada:', location.href);
}
} catch (e) {}
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>