mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-14 03:15:23 +01:00
8f0589cbf2
This meta tag leads to a real full screen app. See https://developer.apple.com/library/content/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html
27 lines
660 B
HTML
27 lines
660 B
HTML
{% extends "layout.html" %}
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
|
|
{%- block metas %}
|
|
{{super()}}
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
{%- endblock metas %}
|
|
|
|
{% block content %}
|
|
<h1 class="text-center">Binary Kitchen Doorlock</h1>
|
|
<div class="row">
|
|
<div class="col-md-3 text-center">
|
|
<img src="{{ led }}">
|
|
</div>
|
|
<div class="col-md-8">
|
|
{{ wtf.quick_form(authentication_form, button_map={'open': 'success btn-lg btn-block', 'close': 'danger btn-lg btn-block'}) }}
|
|
{% if response %}
|
|
<hr/>
|
|
<h1>{{ response.to_html() }}</h1>
|
|
{% endif %}
|
|
<hr/>
|
|
Die Kitchen ist: {{ state_text }}
|
|
</div>
|
|
</div>
|
|
{{ super() }}
|
|
{% endblock %}
|