summarylogtreecommitdiffstats
path: root/index.html
blob: 03a709b92e35ef5242797a77f05fd6147f83b478 (plain)
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
<!DOCTYPE html>
<html>
<head>
	<title>{{ .title }}</title>
	<link rel="icon" type="image/png" href="favicon.png">
	<link rel="stylesheet" href="./css/index.css" />
	<link rel="stylesheet" href="./css/xterm.css" />
	<link rel="stylesheet" href="./css/xterm_customize.css" />
</head>
<body>
	<a style="display: inline-block; margin-top: 4px; color:#5c90bc; text-decoration: none;" href="/">
		&nbsp;&nbsp;&larr;&nbsp;&nbsp; [ Pi-KVM Index ]
	</a>
	<div id="terminal" style="height: 95%; height: calc(100% - 30px);"></div>
	<script src="./auth_token.js"></script>
	<script src="./config.js"></script>
	<script src="./js/gotty-bundle.js"></script>
	<script type="text/javascript">
		window.onbeforeunload = function(event) {
			var text = "Are you sure you want to close terminal session?";
			event.returnValue = text;
			return text;
		};
	</script>
</body>
</html>