mirror of
https://codeberg.org/JasterV/terminal-vm.git
synced 2026-04-26 18:10:08 +00:00
44 lines
No EOL
1.2 KiB
HTML
44 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>JS CLI</title>
|
|
|
|
<!-- import the webpage's stylesheet -->
|
|
<link rel="stylesheet" href="src/style.css" />
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
|
|
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
|
<script src="src/scripts/filesTree.js"></script>
|
|
<script src="src/scripts/cli.js"></script>
|
|
<script src="src/scripts/script.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>JS CLI</h1>
|
|
|
|
<div class="cli">
|
|
<div class="cli-hd">
|
|
<div class="circle"></div>
|
|
<div class="circle"></div>
|
|
<div class="circle"></div>
|
|
</div>
|
|
|
|
<div class="cli-out">
|
|
<div class="cli-inp" id="main-inp">
|
|
<p class="route"><span>/</span> ></p>
|
|
<input type="text" spellcheck="false" autofocus>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html> |