-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OakLand - Translator</title>
<base href=".">
<link rel="stylesheet" href="public/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.33.0/min/vs/loader.min.js"></script>
</head>
<body>
<div class="header">
<h1><span class="symbol"><</span>OakLand Translator<span class="symbol">/></span></h1>
<div class="buttons">
<button class="header-btn" id="run"><i class="fas fa-play"></i> Run</button>
<button class="header-btn" id="reports"><i class="fas fa-stop"></i> Reports</button>
<button class="header-btn" id="clear"><i class="fas fa-trash-alt"></i> Clear</button>
<button class="header-btn" id="open-file"><i class="fas fa-folder-open"></i> Open File</button>
</div>
</div>
<div class="container">
<div class="tabs">
<!-- Tabs -->
</div>
<div class="content-area">
<div class="box" id="editor-container">
<h2><span class="symbol"><</span>Editor<span class="symbol">/></span></h2>
<div id="editor"></div> <!-- Monaco editor goes here -->
</div>
<div class="box" id="console">
<h2><span class="symbol"><</span>Console<span class="symbol">/></span></h2>
<button id="copy-console" class="header-btn"><i class="fas fa-copy"></i> Copy</button> <!-- Botón de copiar -->
<div class="console-output" id="salida">
<!-- Console output will appear here -->
<p class="default-message">You will see your results here...</p>
</div>
</div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>