bmc-reboot: add skeleton api calls

Change-Id: Ib3520165b726c793a8a8bb98384894c9771b241d
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
diff --git a/src/bmc-reboot.html b/src/bmc-reboot.html
index 61427eb..22df0c2 100644
--- a/src/bmc-reboot.html
+++ b/src/bmc-reboot.html
@@ -3,15 +3,23 @@
         <h1>Reboot BMC</h1>
     </div>
 
-    <div class="row column">
+    <div class="row column  btm-border-grey">
         <span class="bmc-reboot__status-log inline">BMC last reboot at {{dataService.last_updated |date:'h:mm:ss on MM/dd/yyyy'}}</span>
     </div>
 
-    <div class="row column">
-
-            <div class="row column btm-border-grey bmc-reboot-option" ng-class="{disabled: confirm && !bmcreboot_confirm, transitionAll: confirm && bmcreboot_confirm}">
-                <button id="bmc__reboot" class="btn-secondary" ng-click="bmcrebootConfirm()" role="button">Reboot BMC</button>
-                <confirm title="Reboot BMC" message="perform an orderly shutdown" confirm="bmcreboot_confirm" callback="bmcReboot"></confirm>
-            </div>
-        </div>
-</div>
\ No newline at end of file
+    <div class="row column btm-border-grey bmc-reboot-option"
+         ng-class="{transitionAll: confirm && immediately_confirm}">
+        <ul>
+            <li>Rebooting the BMC causes your browser to lose contact with the BMC for several minutes.</li>
+            <li>When the BMC software has started, you can then log in again.</li>
+            <li>If the Log In button is not enabled after several minutes, you may need to point your browser to the
+                BMC’s address and log in again.
+            </li>
+        </ul>
+        <button id="bmc__reboot" class="btn-secondary" ng-click="bmcRebootConfirm()"><i>&#x21BB</i> Reboot BMC
+        </button>
+        <confirm title="Reboot the BMC"
+                 message="Rebooting the BMC causes your browser to lose contact with the BMC for several minutes."
+                 confirm="bmcReboot_confirm" cancel="bmcRebootCancel"></confirm>
+    </div>
+</div>