This commit is contained in:
Kai Wansart
2018-02-02 00:21:59 +01:00
commit 9c3e560900
36 changed files with 1114 additions and 0 deletions

BIN
www/html/.DS_Store vendored Normal file

Binary file not shown.

33
www/html/devices.html Normal file
View File

@ -0,0 +1,33 @@
<div class="container-fluid text-center bg-grey">
<h2>Lampen</h2>
<div class="row text-center">
<div class="col-sm-4 bg-grey">
<p>Regal</p>
<div class="btn-group">
<button type="button" class="btn btn-primary">An</button>
<button type="button" class="btn btn-primary">Aus</button>
</div>
</div>
<div class="col-sm-4">
<p>Monitor</p>
<div class="btn-group">
<button type="button" class="btn btn-primary">An</button>
<button type="button" class="btn btn-primary">Aus</button>
</div>
</div>
<div class="col-sm-4 bg-grey">
<p>Fernseher</p>
<div class="btn-group">
<button type="button" class="btn btn-primary">An</button>
<button type="button" class="btn btn-primary">Aus</button>
</div>
</div>
<div class="col-sm-4">
<p>Bett</p>
<div class="btn-group">
<button type="button" class="btn btn-primary">An</button>
<button type="button" class="btn btn-primary">Aus</button>
</div>
</div>
</div>
</div>

18
www/html/settings.html Normal file
View File

@ -0,0 +1,18 @@
<div class="container" id="nas">
<div class="col-xs-9">
<div class="btn-group btn-group-justified">
<div class="btn-group">
<button type="button" class="btn btn-primary" id="start"><span class="glyphicon glyphicon-off"></span> Start</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary" id="shutdown"><span class="glyphicon glyphicon-off"></span> Shutdown</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-primary" id="reboot"><span class="glyphicon glyphicon-off"></span> Reboot</button>
</div>
</div>
</div>
<div class="col-xs-3">
<button type="button" class="btn btn-primary" id="update"><span class="glyphicon glyphicon-off"></span> Update</button>
</div>
</div>