forked from sammwyy/AlgoHide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 1.88 KB
/
index.html
File metadata and controls
60 lines (57 loc) · 1.88 KB
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
<!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" />
<title>AlgoHide</title>
<link rel="stylesheet" href="style.css" />
<script src="app.js"></script>
<link rel="shortcut icon" href="icon.png" type="image/png" />
</head>
<body>
<div class="navbar">
<div class="left">
<img src="icon.png" class="icon" />
<h1>AlgoHide</h1>
<span class="subtitle"
>Hide yourself from algorithms, created by
<a href="https://twitter.com/sammwy">@Sammwy</a>, forked by
<a href="https://github.com/PermisosDev">@Permisos</a></span
>
</div>
<div class="right">
<a class="link" href="https://github.com/PermisosDev/AlgoHide"
>Source Code</a
>
</div>
</div>
<div class="container">
<div class="panel-list">
<div class="panel">
<h2>Write here your text</h2>
<textarea id="textinput" rows="15"></textarea>
<button class="btn" onclick="startConvert(false)">
Hide your message
</button>
<div class="range">
<input id="encode-range" type="range" min="1" max="5" value="3" />
<span id="encode-range-description">Normal encode (3)</span>
</div>
</div>
<div class="panel">
<h2>Here your output</h2>
<textarea id="result" rows="15" readonly></textarea>
<button class="btn" id="copy-btn" onclick="copyResultToClipboard ()">
Copy
</button>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
</body>
</html>