mirror of
https://github.com/kasmtech/kasm-install-wizard.git
synced 2026-01-23 02:34:27 +00:00
24 lines
758 B
HTML
24 lines
758 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Kasm Wizard</title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="public/css/xterm.css" />
|
|
<link rel="stylesheet" href="public/css/terminal.css" />
|
|
<link rel="stylesheet" href="public/css/index.css" />
|
|
<script src="public/js/xterm.js"></script>
|
|
<script src="public/js/xterm-addon-fit.js"></script>
|
|
<script src="public/js/jquery.js"></script>
|
|
<script src="socket.io/socket.io.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="titleBar">
|
|
<img src="public/img/logo.png" id="logo">
|
|
<div id="title"></div>
|
|
</div>
|
|
<div id="spacing"></div>
|
|
<div id="container"></div>
|
|
<div id="terminal"></div>
|
|
<script src="public/js/index.js"></script>
|
|
</body>
|
|
</html>
|