ENDRPrint/web/pages/msg.jsp
2024-08-14 10:33:27 +07:00

21 lines
844 B
Plaintext

<%@page contentType="text/html" pageEncoding="UTF-8" %>
<div class="modal-header">
<h3>
<%--<img src="images/Actions-bookmark-new-list-icon.png" style="margin-right: 10px">--%>
MSG : Message
</h3>
</div>
<div class="modal-body">
<h4>
<em style="color : #CC0000">
{{error.errorFlag==1?'ERROR!!! : ' : 'SUCCESS : '}}</em>
<span ng-style="{'white-space':(error.htmlFlag == 1 ? 'pre' : 'pre-wrap')}" >{{error.errorDesc}}</span>
</h4>
</div>
<div class="modal-footer" style="display: block">
<button class="btn btn-info btn-sm" ng-click="ok()" ng-show="error.errorFlag!=1" focus="{{error.errorFlag!=1?fFocus:false}}">OK</button>
<button class="btn btn-warning" ng-click="cancel()" ng-show="error.errorFlag==1" focus="{{error.errorFlag==1?fFocus:false}}">Close</button>
</div>