-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) 路 2.63 KB
/
Copy pathindex.html
File metadata and controls
49 lines (45 loc) 路 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>JWT Debugger | Decode & Verify JWT Tokens</title>
<meta name="description" content="Instantly decode, verify, and debug JWT tokens with this interactive JWT debugger. Analyze claims, headers, and signatures in real-time.">
<meta name="keywords" content="JWT debugger, JWT token decoder, verify JWT, JWT analysis, JWT validation, authentication debugging">
<meta name="author" content="Janaka Edirisinghe">
<meta name="robots" content="index, follow">
<!-- Open Graph (OG) for Social Media -->
<meta property="og:title" content="JWT Debugger | Decode & Verify JWT Tokens">
<meta property="og:description" content="Easily decode and verify JWT tokens with this real-time debugging tool. Analyze token claims, headers, and signatures seamlessly.">
<meta property="og:image" content="https://janakaedirisinghe.com/u/github_avatar.png">
<meta property="og:url" content="https://janakaedirisinghe.com">
<meta property="og:type" content="website">
<meta property="og:image:width" content="100">
<meta property="og:image:height" content="100">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="JWT Debugger | Decode & Verify JWT Tokens">
<meta name="twitter:description" content="Decode and verify JWT tokens instantly with real-time analysis and debugging.">
<meta name="twitter:image" content="https://janakaedirisinghe.com/u/github_avatar.png">
<title>JWT Debugger</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
// Check for saved theme preference and apply before page load to prevent flash
if (localStorage.getItem('darkMode') === 'true' ||
(localStorage.getItem('darkMode') === null &&
window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
</head>
<body class="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-white transition-colors duration-300">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>