
This adds the initial UI functionality for the UI in relations to vendors. Change-Id: I58a3b00a421d2d65d59014e586bacc974aa8637b Co-Authored-By: Andrey Pavlov <andrey-mp@yandex.ru>
14 lines
561 B
HTML
14 lines
561 B
HTML
<div class="modal-header"><h3 class="modal-title">Confirm</h3></div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="confirmText">{{confirmModal.data.text}}:</label>
|
|
<textarea type="text" class="form-control"
|
|
rows="5" ng-model="confirmModal.inputText" id="confirmText">
|
|
</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-primary" ng-click="confirmModal.confirm()">Ok</button>
|
|
<button class="btn btn-default" ng-click="confirmModal.cancel()">Cancel</button>
|
|
</div>
|