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