-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathencoder.html
41 lines (41 loc) · 1.25 KB
/
encoder.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Ruru64</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://unpkg.com/swup@3"></script>
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="alphabet.js"></script>
</head>
<body>
<nav>
<div class="nav-item"><a href="index">Home</a></div>
<div class="nav-item"><a href="decoder">Decoder</a></div>
<div class="nav-item"><a href="encoder">Encoder</a></div>
</nav>
<div class="content swup-transition-move" id="swup">
<input
type="text"
id="inputEncode"
name="inputEncode"
value=""
placeholder="Enter a value to encrypt"
/>
<p id="output"></p>
</div>
<footer>
<p>
This website was made by the Ruru's community with ❤. Check out the
<a href="https://discord.gg/merururuu">Discord</a>!
</p>
</footer>
<script>
var swup = new Swup({
animationSelector: '[class*="swup-transition-"]',
});
</script>
<script src="main.js"></script>
</body>
</html>