fixing security issues found in onap admportal
[sdnc/oam.git] / admportal / views / pages / err.ejs
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4   <title>SDN-C AdminPortal</title>
5   <meta charset="utf-8" />
6   <meta http-equiv="X-UA-Compatible" content="IE=edge">
7   <% include ../partials/head %>
8 </head>
9 <body class="container">
10
11 <div class="actions" style="padding:0px 25px;">
12 <h2>System Error</h2>
13 </div>
14
15 <% if ( typeof result != 'undefined' ) {
16         if (result.code.length > 0) {
17             if ( result.code == 'success' ) { %>
18                 <div class='alert alert-success' role='alert'><%=result.msg %></div>
19             <% } else { %>
20                 <div class='alert alert-danger' role='danger'><%=result.msg %></div>
21             <% } %>
22         <% } %>
23 <% } %>
24
25
26 <footer>
27          <% include ../partials/footer %>
28 </footer>
29     
30 </body>
31 </html>
32