-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.html
33 lines (28 loc) · 1006 Bytes
/
main.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
<head>
<title>Scypho Config</title>
</head>
<body>
</body>
<template name="main">
<div class="container">
{{#unless isBleEnabled}}
<div class="alert alert-warning">
<a href="#" class="btn btn-xs btn-warning pull-right" id="enableBle">Enable</a>
<strong>Warning:</strong> Bluetooth Disabled
</div>
{{/unless}}
{{#unless isWifiEnabled}}
<div class="alert alert-warning">
<a href="#" class="btn btn-xs btn-warning pull-right" id="enableWifi">Enable</a>
<strong>Warning:</strong> Wifi Disabled
</div>
{{/unless}}
{{> yield}}
{{#if errorMessage}}
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>{{errorMessage}}</strong>
</div>
{{/if}}
</div>
</template>