-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (83 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
92 lines (83 loc) · 4.42 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
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
89
90
91
92
<!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">
<meta name="description" content="Text Obfuscator">
<meta name="author" content="Mlendea Horațiu">
<meta name="keywords" content="Text,Obfuscator">
<link rel="icon" href="https://iconarchive.com/download/i106193/papirus-team/papirus-apps/preferences-desktop-user-password.ico">
<title>Text Obfuscator</title>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.12.1/jquery.easing.min.js"></script>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://startbootstrap.github.io/startbootstrap-freelancer/css/styles.css" rel="stylesheet" />
<!-- CSS - Customisations -->
<link href="css/custom.css" rel="stylesheet">
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
</head>
<body class="body">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="https://github.com/hmlendea/text-obfuscator">
<i class="fab fa-fw fa-github"></i>
Text Obfuscator
</a>
</div>
</nav>
<section class="page-section" id="obfuscator">
<div class="divider-custom"></div>
<div class="container">
<div class="row">
<div class="col-lg-3 ml-auto">
<p><i class="fas fa-fw fa-indent"></i> Input:</p>
</div>
<div class="col-lg-9 mr-auto">
<input class="form-control" id="input" type="text" placeholder="Hello world!" />
</div>
</div>
<br>
<div class="row">
<div class="col-lg-3 ml-auto">
<p><i class="fas fa-fw fa-outdent"></i> Output:</p>
</div>
<div class="col-lg-9 mr-auto">
<input class="form-control" id="output" type="text" placeholder="Неllo World!" disabled="true" />
</div>
</div>
<br>
<div class="row">
<div class="col-lg-3 ml-auto"></div>
<div class="col-lg-9 mr-auto">
<div class="form-check form-switch">
<input class="form-check-input" id="approximateCharactersCheckbox" name="approximateCharactersCheckbox" type="checkbox" />
<label class="form-check-label" for="approximateCharactersCheckbox">Approximate characters</label>
</div>
</div>
</div>
<br>
<div class="row text-center">
<div class="col-lg-12 ml-auto mr-auto">
<span id="obfuscate" class="btn btn-lg btn-outline-dark" onclick="obfuscateText()">
<i class="fas fa-fw fa-cogs"></i> Obfuscate
</span>
<span id="copy" class="btn btn-lg btn-outline-dark" onclick="copyText()">
<i class="fas fa-fw fa-copy"></i> Copy
</span>
</div>
</div>
</div>
</section>
<script src="https://startbootstrap.github.io/startbootstrap-freelancer/js/scripts.js"></script>
<script src="js/text-obfuscator.js"></script>
</body>
</html>