mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
26 lines
782 B
HTML
26 lines
782 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
$(document).ready(function() {
|
|
var socket = io.connect(location.protocol + '//' + document.domain + ':' + location.port)
|
|
socket.on('connect', function() {
|
|
socket.emit('connected');
|
|
});
|
|
socket.on('status', function(status) {
|
|
$('#led').html(status.led)
|
|
$('#message').html(status.message)
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Willkommen in der Binary Kitchen!</h1>
|
|
<div id="led"></div>
|
|
<div id="message"></div>
|
|
{{ super() }}
|
|
{% endblock %}
|