16 lines
444 B
HTML
16 lines
444 B
HTML
<div class="modal-header">
|
|
<h3 class="modal-title">Crear Sección</h3>
|
|
</div>
|
|
<div style="text-align: center" class="modal-body">
|
|
{{ vm.mensaje }}
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-primary"
|
|
ng-show="vm.botonOk"
|
|
type="button"
|
|
ng-click="ok()">Aceptar</button>
|
|
<button class="btn btn-warning"
|
|
ng-show="vm.botonCancelar"
|
|
type="button"
|
|
ng-click="cancel()">Cancelar</button>
|
|
</div> |