-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti-cipher.html
88 lines (79 loc) · 3.63 KB
/
multi-cipher.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Multi-Cipher</title>
<link rel="icon" type="image" href="/Images/cipher.svg">
<link rel="stylesheet" href="/styles/style.css">
<!-- not sure? -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- embed support -->
<meta property="og:title" content="slyzoo's website for her projects">
<meta property="og:description" content="she just makes and posts random things here">
<meta property="og:image" content="https://slyzoo.net/Images/cipher.svg">
</head>
<style>
.x-small-flex-card{
background-color: #202020e6;
}
</style>
<body>
<nav class="nav">
<a href="https://slyzoo.net"><img src="/Images/home.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/multi-calculator"><img src="/Images/calculator.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/multi-cipher"><img src="/Images/cipher.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/fabric-mods"><img src="/Images/fabric.png" height="50" width="50"></a>
<a href="https://slyzoo.net/neodroid"><img src="/Images/neodroid.png" height="50" width="50"></a>
<a href="https://slyzoo.net/neomoji"><img src="/Images/neomoji/red_circle.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/programming"><img src="/Images/terminal.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/project-magenta"><img src="/Images/keyboard.svg" height="50" width="50"></a>
<a href="https://slyzoo.net/stopwatch"><img src="/Images/stopwatch.svg" height="50" width="50"></a>
</nav>
<div class="main">
<!-- ciphers / feats to add
Adjustable caesar
Numerology code
Atomic names
Atomic numbers
Atomic symbols
TODO : fix hexcolour
-->
<h1>Multi-Cipher</h1>
<div class="flex-container">
<div class="x-small-flex-card">
<label><input type="radio" name="mode" value="encode" checked> Encode</label><br>
<label><input type="radio" name="mode" value="decode"> Decode</label><br>
<label for="caesarShift">Shift Value:</label><input type="number" id="caesarShift" min="0" max="25" value="3">
<div class="cipher-radio">
<select id="cipherDropdown">
<option value="atbash">Atbash</option>
<option value="ascii">ASCII</option>
<option value="base64">Base64</option>
<option value="binary">Binary</option>
<option value="caesar">Caesar</option>
<option value="hex-colour">Hex Colour</option>
<option value="hexadecimal">Hexadecimal</option>
<option value="morse">Morse Code</option>
<option value="pig-latin">Pig Latin</option>
<option value="reverse">Reverse</option>
<option value="roman-numerals">Roman Numerals</option>
<option value="tap">Tap Code</option>
<option value="unicode">Unicode</option>
<option value="uwu">UwU</option>
</select>
</div>
</div>
<div class="x-large-flex-card">
<div class="container">
<div class="cypher-options">
<textarea class="cypher-textarea" id="inputText" placeholder="Input"></textarea>
<textarea class="cypher-textarea" id="outputText" readonly placeholder="Output"></textarea><br>
<button id="cypher-copy-button">Copy Output</button>
</div>
</div>
</div>
</div>
<script src="Javascript/cypher.js"></script>
</body>
</html>