1*4129f402SGunnar Mills<div id="led-switch"> 2*4129f402SGunnar Mills <div class="row column"> 3*4129f402SGunnar Mills <h1>Server LED</h1> 4*4129f402SGunnar Mills <div class="page-header"> 5*4129f402SGunnar Mills <h2 class="h4">LED light control</h2> 6*4129f402SGunnar Mills </div> 7*4129f402SGunnar Mills </div> 8*4129f402SGunnar Mills 9*4129f402SGunnar Mills <div class="row column" ng-class="{disabled: dataService.server_unreachable || dataService.loading}"> 10*4129f402SGunnar Mills <div class="btm-border-grey"> 11*4129f402SGunnar Mills <div class="toggle inline"> 12*4129f402SGunnar Mills <input id="toggle__switch-round" 13*4129f402SGunnar Mills class="toggle-switch toggle-switch__round-flat" 14*4129f402SGunnar Mills type="checkbox" 15*4129f402SGunnar Mills tabindex="0" 16*4129f402SGunnar Mills ng-click="toggleLED()" 17*4129f402SGunnar Mills ng-checked="dataService.LED_state == 'on'" 18*4129f402SGunnar Mills ng-disabled="dataService.server_unreachable" 19*4129f402SGunnar Mills > 20*4129f402SGunnar Mills <label for="toggle__switch-round" tabindex="0">Server indicator is <span class="led-switch__status">{{dataService.LED_state}}</span></label> 21*4129f402SGunnar Mills </div> 22*4129f402SGunnar Mills <div class="led-switch__label inline"> 23*4129f402SGunnar Mills <p>Server LED light is <span class="led-switch__status">{{dataService.LED_state}}</span></p> 24*4129f402SGunnar 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> 25*4129f402SGunnar Mills </div> 26*4129f402SGunnar Mills </div> 27*4129f402SGunnar Mills </div> 28*4129f402SGunnar Mills</div> 29