-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect.html
36 lines (32 loc) · 986 Bytes
/
connect.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends "layout.html" %}
<meta http-equiv="refresh" content="10" />
{% block title %}
Connect
{% endblock %}
{% block main %}
<section class="splitter">
<div class="een">
<form action="/connect" method="post">
<div class="form-group">
<input class="form-control" name="fake" type="hidden" placeholder="Fake">
</div>
<button class="btn btn-primary" type="submit">Connect Sensor</button>
</form>
</div>
<div class="twee">
<textarea id="txtarear" rows="5" cols="60">
{{ conntext | safe }}
</textarea>
</div>
</section>
<section class="splitter">
<div class="een">
<form action="/monitor" method="post">
<div class="form-group">
<input class="form-control" name="fake" type="hidden" placeholder="Fake">
</div>
<button class="btn btn-primary" type="submit">Monitoring</button>
</form>
</div>
</section>
{% endblock %}