We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac397e commit 55a7b92Copy full SHA for 55a7b92
1 file changed
index.html
@@ -71,6 +71,13 @@ <h1>POBFUS 0.7</h1>
71
<textarea id="inputCode" placeholder="print('Hello World')"></textarea>
72
73
<button onclick="pobfusStart()">PROTECT & VIRTUALIZE</button>
74
+
75
+ <div style="display: flex; gap: 10px; margin-top: 10px;">
76
+ <button onclick="copyToClipboard()" style="background: #238636;">COPY CODE</button>
77
+ <button onclick="downloadFile()" style="background: #8957e5;">DOWNLOAD .LUA</button>
78
+</div>
79
80
+<div id="toast" style="display:none; position:fixed; bottom:20px; right:20px; background: #58a6ff; color:white; padding:10px 20px; border-radius:5px; font-weight:bold;">Copied!</div>
81
82
<label style="margin-top: 20px; display: block;">OBFUSCATED OUTPUT:</label>
83
<textarea id="outputCode" readonly></textarea>
0 commit comments