-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecode.html
More file actions
33 lines (33 loc) · 970 Bytes
/
decode.html
File metadata and controls
33 lines (33 loc) · 970 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Atomic Number Cipher Generator</title>
<link href="/style.css" rel="stylesheet" type="text/css" />
<base href="/">
<script>
window.onload = function(){
if (location.origin === "https://actiniumn404.github.io"){
document.querySelector("base").setAttribute("href", location.origin + "/cipher/")
}else{
document.querySelector("base").setAttribute("href", location.origin+"/")
}
}
</script>
</head>
<body>
<h1 style="font-size:40px;">
The One Way, Atomic Number Cipher Translator
<a href="/">
<button class="button" style="padding:10px;">
< Back
</button>
</a>
</h1>
<textarea id="input" placeholder="Encoded text"></textarea>
<textarea id="output" placeholder="Waiting for input" disabled></textarea>
<script src="data.js"></script>
<script src="decode.js"></script>
</body>
</html>