Hype/web/templates/logs.html

22 lines
431 B
HTML
Raw Permalink Normal View History

2023-06-22 13:30:22 +00:00
{% include 'base.html' %}
{% block main %}
<div class="qard">
<h3>Logs</h3>
<pre id="output" style="text-align:left"></pre>
<script>
var output = document.getElementById('output');
var xhr = new XMLHttpRequest();
xhr.open('GET', '{{ url_for('stream') }}');
xhr.send();
setInterval(function() {
output.textContent = xhr.responseText;
}, 1000);
</script>
{% endblock %}
{% include 'foot.html' %}