8ed51c6c846fbe1fd87679d9627da88f8a446086
[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   <% include ../partials/header %>
9 </head>
10 <body class="container">
11
12 <div class="actions" style="padding:0px 25px;">
13 <h2>System Error</h2>
14 </div>
15
16 <% if ( typeof result != 'undefined' ) {
17         if (result.code.length > 0) {
18             if ( result.code == 'success' ) { %>
19                 <div class='alert alert-success' role='alert'><%=result.msg %></div>
20             <% } else { %>
21                 <div class='alert alert-danger' role='danger'><%=result.msg %></div>
22             <% } %>
23         <% } %>
24 <% } %>
25
26
27 <footer>
28          <% include ../partials/footer %>
29 </footer>
30     
31 </body>
32 </html>
33