blob: cf5c3004796316190a979cbdf74aaa9ea1f1f0b4 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<!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 %>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05008</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