-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
99 lines (90 loc) · 3.21 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
<!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" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
/>
<title>Obfuscator Javascript</title>
</head>
<body class="bg-light">
<main class="my-5">
<div class="container">
<div class="row">
<div class="col-lg-6 p-5 mx-auto bg-white border rounded">
<h3 class="fw-bold">Obfuscator Javascript Tools</h3>
<p>
A free and efficient obfuscator for JavaScript. Make your code
harder to copy and prevent people from stealing your work.
</p>
<form class="mt-4" id="form">
<div class="mb-3">
<label class="form-label" for="javascriptCode"
>JavaScript Code</label
>
<textarea
id="javascriptCode"
class="form-control"
rows="10"
placeholder="Paste Your Code"
required
></textarea>
</div>
<div class="mb-3">
<label class="form-label" for="lockDomains">Lock Domains</label>
<textarea
id="lockDomains"
class="form-control"
rows="3"
placeholder="www.google.com,www.youtube.com,www.twitter.com"
></textarea>
</div>
<button class="btn btn-primary w-100">Obfuscate</button>
</form>
<form class="mt-4 d-none" id="form2">
<div class="mb-3">
<label class="form-label" for="output">Output</label>
<textarea
id="output"
class="form-control"
rows="10"
disabled
></textarea>
</div>
<div class="row">
<div class="col-6">
<button
id="obfuscateAnotherCode"
type="button"
class="btn btn-primary w-100"
>
Obfuscate Another Code
</button>
</div>
<div class="col-6">
<button
id="copyBtn"
type="button"
class="btn btn-success w-100"
>
Copy Output
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</main>
<!-- Bootstrap Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"></script>
<!-- Javascript Obfuscator -->
<script src="https://cdn.jsdelivr.net/npm/javascript-obfuscator/dist/index.browser.js"></script>
<!-- Custom Javascript -->
<script src="app.js"></script>
</body>
</html>