-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VOps</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div id="sidePanel">
<header>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vuejs/vuejs-original.svg" alt="Logo">
<h1 style="color: skyblue;">VOps-Workspace</h1>
</header>
<div id="sideContent">
<ul></ul>
</div>
</div>
<div id="docker">
<!-- Docker functionalities -->
<i class="fas fa-times" id="closeButton" onclick="removeIframe()"></i>
<i class="fas fa-expand" id="fullscreenButton" onclick="toggleFullscreen()"></i>
<i class="fas fa-arrows-alt" id="moveButton" onmousedown="startDrag(event)"></i>
</div>
<div id="iframeContainer">
<!-- IFrames will be dynamically added here -->
</div>
<script src="script.js"></script>
</body>
</html>