mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 17:38:54 +00:00
13 lines
467 B
HTML
13 lines
467 B
HTML
<div class="modal-header">
|
|
<h3 class="modal-title">{{$ctrl.title}}</h3>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form class="form">
|
|
<input type="text" ng-model="$ctrl.group.name" placeholder="Group Name" class="form-control" autofocus/>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-default" ng-click="$ctrl.close()">Cancel</button>
|
|
<button class="btn btn-primary" ng-click="$ctrl.ok()">{{$ctrl.saveButtonText}}</button>
|
|
</div>
|