diff options
| author | Iftekharul Islam <iffy.ryan@ibm.com> | 2017-11-02 13:20:32 -0500 |
|---|---|---|
| committer | Iftekharul Islam <iffy.ryan@ibm.com> | 2017-11-02 13:20:32 -0500 |
| commit | 1acb412d46571b39f01f058f0b7830b4cfa4877b (patch) | |
| tree | 70b78755b2e87329ccd9f78d59730d45f3a005b7 /app/configuration/controllers/firmware-controller.html | |
| parent | db28a387c218b82ff70766359f4a521c713ab274 (diff) | |
| download | phosphor-webui-1acb412d46571b39f01f058f0b7830b4cfa4877b.tar.gz phosphor-webui-1acb412d46571b39f01f058f0b7830b4cfa4877b.zip | |
Updating login structure
Updated login structure with a field where user can manually add server hostname if it is not populated automatically
Change-Id: I147c2c15869131540e327bda26c05b59d78e01d5
Signed-off-by: Iftekharul Islam <iffy.ryan@ibm.com>
Diffstat (limited to 'app/configuration/controllers/firmware-controller.html')
| -rw-r--r-- | app/configuration/controllers/firmware-controller.html | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/app/configuration/controllers/firmware-controller.html b/app/configuration/controllers/firmware-controller.html index 1f67caa..c305047 100644 --- a/app/configuration/controllers/firmware-controller.html +++ b/app/configuration/controllers/firmware-controller.html @@ -1,3 +1,4 @@ +<loader loading="loading"></loader> <div class="row column"> <h1>Firmware</h1> <div class="column small-12 page-header"> @@ -34,14 +35,14 @@ <div class="row"> <div class="column small-12 large-4"> <label for="tftp-ip">TFTP Server IP address</label> - <input name="tftp-ip" id="tftp-ip" type="number"/> + <input name="tftp-ip" id="tftp-ip" type="text" ng-model="download_host"/> </div> <div class="column small-12 large-4"> <label for="tftp-file-name">File name</label> - <input name="tftp-file-name" id="tftp-file-name" type="text"/> + <input name="tftp-file-name" id="tftp-file-name" type="text" ng-model="download_filename"/> </div> <div class="column small-12 large-4"> - <input type="submit" value="Download firmware" class="inline button btn-primary float-right"/> + <input type="button" value="Download firmware" class="inline button btn-primary float-right" ng-click="download()"/> </div> </div> <div class="inline uploading" ng-show="downloading">Downloading in progress...</div> @@ -67,6 +68,23 @@ </div> </section> +<section class="modal" aria-hidden="true" aria-labelledby="modalTitle" aria-describedby="modalDescription" role="dialog" ng-class="{'active': confirm_priority}"> + <div class="modal__tftp-unreachable" role="document"> + <div class="screen-reader-offscreen modal-description">Update image priority</div><!-- accessibility only; used for screen readers --> + <div class="page-header "> + <span class="icon icon__warning inline"><span class="accessible-text" role="alert">Warning</span></span> + <h1 class="modal-title h4 inline">Change image priority</h1> + </div> + <div class="modal__content"> + <p>Change firmware {{priority_image_id}} priority?</p> + </div> + <div class="modal__button-wrapper"> + <button class="inline btn-secondary" ng-click="confirm_priority=false;">Cancel</button> + <button class="inline btn-primary" ng-click="confirmChangePriority()">Continue</button> + </div> + </div> +</section> + <section class="modal" aria-hidden="true" aria-labelledby="modalTitle" aria-describedby="modalDescription" role="dialog" ng-class="{'active': confirm_delete}"> <div class="modal__tftp-unreachable" role="document"> <div class="screen-reader-offscreen modal-description">Delete firmware image</div><!-- accessibility only; used for screen readers --> |

