14129f402SGunnar Mills<div id="led-switch">
24129f402SGunnar Mills    <div class="row column">
34129f402SGunnar Mills        <h1>Server LED</h1>
44129f402SGunnar Mills        <div class="page-header">
5*edf1ab46Sbeccabroek            <h2>LED light control</h2>
64129f402SGunnar Mills        </div>
74129f402SGunnar Mills    </div>
84129f402SGunnar Mills
94129f402SGunnar Mills    <div class="row column" ng-class="{disabled: dataService.server_unreachable || dataService.loading}">
104129f402SGunnar Mills        <div class="btm-border-grey">
114129f402SGunnar Mills            <div class="toggle inline">
124129f402SGunnar Mills                <input id="toggle__switch-round"
134129f402SGunnar Mills                       class="toggle-switch toggle-switch__round-flat"
144129f402SGunnar Mills                       type="checkbox"
154129f402SGunnar Mills                       tabindex="0"
164129f402SGunnar Mills                       ng-click="toggleLED()"
174129f402SGunnar Mills                       ng-checked="dataService.LED_state == 'on'"
184129f402SGunnar Mills                       ng-disabled="dataService.server_unreachable"
194129f402SGunnar Mills                       >
204129f402SGunnar Mills                <label for="toggle__switch-round" tabindex="0">Server indicator is <span class="led-switch__status">{{dataService.LED_state}}</span></label>
214129f402SGunnar Mills            </div>
224129f402SGunnar Mills            <div class="led-switch__label inline">
234129f402SGunnar Mills                <p>Server LED light is <span class="led-switch__status">{{dataService.LED_state}}</span></p>
244129f402SGunnar Mills                <p>Turn the LED light on or off. If the server has an LCD, use this control to display text (on) or not to display text (off) on the LCD.</p>
254129f402SGunnar Mills            </div>
264129f402SGunnar Mills        </div>
274129f402SGunnar Mills    </div>
284129f402SGunnar Mills</div>
29