You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tty-server/frontend/templates/tty-receiver.in.html

22 lines
550 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Terminal</title>
</head>
<body>
<div id="terminal"></div>
<div id="settings"></div>
<script type="text/javascript">
window.ttyInitialData = {
sessionID: {{.SessionID}},
salt: {{.Salt}},
wsPath: {{.WSPath}}
}
console.log("Initial data", window.ttyInitialData)
</script>
<script src="/static/tty-receiver.js"></script>
</body>
</html>