-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (84 loc) · 3.39 KB
/
index.html
File metadata and controls
88 lines (84 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="assets\favicon.ico" type="image/x-icon">
<title>Cherry IDE</title>
</head>
<body>
<div id="ide-container">
<!-- Header -->
<header id="ide-header">
<h1>❃ Cherry IDE</h1>
<div id="header-actions">
<button id="save-btn">Save</button>
<button id="clear-btn">Clear</button>
<button id="run-btn">Run ❱</button>
</div>
</header>
<!-- Main Content -->
<div id="ide-main">
<!-- File System Panel -->
<aside id="file-system">
<h2>Files</h2>
<ul id="file-list">
<li>app.js</li>
</ul>
<button id="add-file-btn">Add File</button>
<!-- Add new file -->
<div id="new-file">
<h2>Add File</h2>
<div id="new-file-card">
<label for="fileName">File Name:</label>
<input type="text" name="file-name" id="fileName">
<button type="submit" id="add-btn">Add</button>
</div>
</div>
<br><br>
<button id="suggest-feature-btn">Suggest Features</button>
<button id="settings-btn" >⚙</button>
<div id="settings-card">
<div id="settings-header">
<h1>Settings</h1>
<button id="close-btn">⤬ </button>
</div>
<label for="themes">Themes:</label>
<select id="theme-dropdown">
<optgroup
label="Cherry-Originals">
<optgroup label="Dark">
<option value="dark">Dark-Original</option>
<option value="midnightblsm">Midnight Blossom</option>
</optgroup>
<optgroup label="Light">
<option value="light">Light-Original</option>
<option value="blsm">Blossom</option>
</optgroup>
</optgroup>
</select>
</aside>
<!-- Editor and Output Section -->
<section id="editor-output">
<!-- Code Editor -->
<div id="code-editor">
<div id="numberOfLines"></div>
<textarea id="editor" placeholder="Write your JavaScript code here... ✎"></textarea>
</div>
<!-- Output Console -->
<div id="output-console">
<h2>Console</h2>
<div id="console-output"></div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="ide-footer">
<p>© 2025 Cherry IDE (Version: 0.2).</p>
<a href="https://github.com/codex-leo" target="_blank">Github</a>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>