mirror of
https://github.com/moparisthebest/mail
synced 2024-11-11 03:35:01 -05:00
13 lines
431 B
HTML
13 lines
431 B
HTML
<div class="lightbox-body" ng-controller="DialogCtrl">
|
|
<header>
|
|
<h2>{{state.dialog.title}}</h2>
|
|
<button class="close" ng-click="confirm(false)" data-action="lightbox-close"></button>
|
|
</header>
|
|
|
|
<div class="content">
|
|
<p>{{state.dialog.message}}</p>
|
|
<div class="control">
|
|
<button ng-click="confirm(true)" class="btn">Ok</button>
|
|
</div>
|
|
</div><!-- /.content -->
|
|
</div><!-- /.lightbox-body --> |