MsRewards-Reborn/Flask/templates/vnc_post.html

35 lines
882 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-09-20 13:13:41 +02:00
{% block left_pannel %}override{% endblock %}
{% block content %}
{%if not current_user.is_authenticated %}
<button class="unselected" onclick="location.href = '/login';">login</button>
{% else %}
2023-09-27 20:12:29 +02:00
<table>
<tr>
<td width="20%" height="90%">
<div id="console"></div>
</td>
<td width="80%">
<iframe src="/novnc/vnc.html?resize=scale&path=novnc/websockify&autoconnect=true&view_only" width="100%" height="100%" frameborder="0"></iframe>
</td>
2023-09-27 20:12:29 +02:00
</tr>
</table>
2023-09-27 20:05:39 +02:00
2023-09-27 20:05:39 +02:00
<script>
const consoleElement = document.getElementById('console');
const eventSource = new EventSource('/stream');
2023-09-27 20:05:39 +02:00
eventSource.onmessage = (event) => {
document.getElementById("console").innerHTML = event.data + document.getElementById("console").innerHTML
};
2023-09-27 20:05:39 +02:00
</script>
{% endif %}
{%endblock %}