summaryrefslogtreecommitdiffstats
path: root/vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html
diff options
context:
space:
mode:
Diffstat (limited to 'vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html')
-rw-r--r--vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html b/vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html
new file mode 100644
index 000000000..fd04f8e84
--- /dev/null
+++ b/vbd/gui/module/src/main/resources/vpp/views/new-bd-dialog.html
@@ -0,0 +1,39 @@
+<md-dialog ng-cloak aria-label="new bd dialog">
+ <form>
+ <md-toolbar>
+ <div class="md-toolbar-tools">
+ <h2 style="color: white">
+ New BD
+ </h2>
+ <span flex></span>
+ <md-button class="md-icon-button" ng-click="NewBdDialogCtrl.close()" aria-label="close button">
+ <div class="glyphicon glyphicon-remove"></div>
+ </md-button>
+ </div>
+ </md-toolbar>
+ <md-dialog-content style="max-width:800px;max-height:810px; ">
+ <div class="md-dialog-content">
+ <md-content layout-padding>
+ <form name="bDConfigForm">
+ <div layout layout-sm="column">
+ <md-input-container flex>
+ <label>
+ Name
+ </label>
+ <input ng-model="NewBdDialogCtrl.bd.name">
+ </md-input-container>
+ </div>
+ </form>
+ </md-content>
+
+ </div>
+ </md-dialog-content>
+ <md-progress-linear md-mode="indeterminate" ng-show="NewBdDialogCtrl.waiting"></md-progress-linear>
+ <md-dialog-actions layout="row">
+ <span flex></span>
+ <md-button ng-click="NewBdDialogCtrl.updateConfig();" style="margin-right:20px;" class="md-accent">
+ Add
+ </md-button>
+ </md-dialog-actions>
+ </form>
+</md-dialog> \ No newline at end of file