summaryrefslogtreecommitdiff
path: root/graphs/js/storageWars/index.html
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:08:27 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:08:27 +0200
commitc9b6b9a5ca082fe7c1b6f58d7713f785a9eb6a5c (patch)
tree3e4f42f93c7ae89a364e4d51fff6e5cec4e55fa9 /graphs/js/storageWars/index.html
add: graphs et rushs
Diffstat (limited to 'graphs/js/storageWars/index.html')
-rw-r--r--graphs/js/storageWars/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/graphs/js/storageWars/index.html b/graphs/js/storageWars/index.html
new file mode 100644
index 0000000..49fad63
--- /dev/null
+++ b/graphs/js/storageWars/index.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <script defer src="storageWars.js"></script>
+ <title>Storage Wars</title>
+</head>
+<body style="max-width: fit-content; margin-left: auto; margin-right: auto;">
+ <div>
+ <input type="text" id="inputJWT">
+ <button id="addToken" onclick="addToken()">Add JWT</button>
+ </div>
+ <div id="userInfo" style="display: none;">
+ <h1>User Info</h1>
+ <p>Name: <span id="name"></span></p>
+ <p>Email: <span id="email"></span></p>
+ <p>Age: <span id="age"></span></p>
+ </div>
+ <div id="error"></div>
+</body>
+</html>