Skip to content

Commit

Permalink
Test script for decoding stuff in the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
asmith-nhsx authored Sep 11, 2024
1 parent 782b6f3 commit 5089f0b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Tools/base64-decode.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<html>
<head>
<title>Base64 Decodertron</title>
<script type="text/javascript">
window.onload = function() {
let summary = window.location.url
document.getElementById("summary").value = summary;
}
</script>
</head>
<body>
<h1>Decoding your data...</h1>
<div>
<div id="summary"></div>
</div>
</body>

0 comments on commit 5089f0b

Please sign in to comment.