1<div id="bmc-reboot"> 2 <div class="row column"> 3 <h1>Reboot BMC</h1> 4 </div> 5 6 <div class="row column btm-border-grey"> 7 <span class="bmc-reboot__status-log inline">BMC last reboot at {{dataService.last_updated |date:'h:mm:ss on MM/dd/yyyy'}}</span> 8 </div> 9 10 <div class="row column btm-border-grey bmc-reboot-option" 11 ng-class="{disabled: dataService.server_unreachable || dataService.loading, transitionAll: confirm}"> 12 <ul> 13 <li>Rebooting the BMC causes your browser to lose contact with the BMC for several minutes.</li> 14 <li>When the BMC software has started, you can then log in again.</li> 15 <li>If the Log In button is not enabled after several minutes, you may need to point your browser to the 16 BMC’s address and log in again. 17 </li> 18 </ul> 19 <button id="bmc__reboot" class="btn-secondary" ng-click="rebootConfirm()" ng-disabled="dataService.server_unreachable"><i>↻</i> Reboot BMC 20 </button> 21 <confirm title="Reboot the BMC" 22 message="Rebooting the BMC causes your browser to lose contact with the BMC for several minutes." 23 confirm="confirm" 24 ng-show="confirm" 25 callback="reboot"></confirm> 26 </div> 27</div> 28