-
Notifications
You must be signed in to change notification settings - Fork 0
/
command_creator.html
29 lines (28 loc) · 964 Bytes
/
command_creator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Command Creator</title>
<link rel="stylesheet" href="./css/command.css">
<link rel="stylesheet" href="./css/header.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cli.html" >CLI Interface</a></li>
<li><a href="command_creator.html" style="color: #50fa7b;">Command Creator</a></li>
</ul>
</nav>
<h1>Command Creator</h1>
<div id="commandsContainer"></div>
<button id="addCommandButton">Add Command</button>
<button id="generateButton">Generate Code</button>
<button id="copyButton">Copy Code to Clipboard</button>
<textarea id="generatedCode" readonly></textarea>
<footer>
<p>© 2024-10-14 Made for 🏳 With Chatgpt o1-preview <a href="https://github.com/safaritrader" style="color: #f8f8f2 !important;">Hassan Safari</a></p>
</footer>
<script type="text/javascript" src="./js/command_creator.js"></script>
</body>
</html>