blob: 596feb6668b245f48cc06df1ea02d8f7cc55153c [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>
11
12
13<div class="actions" style="padding:0px 25px;">
14<h2>VNF Data</h2>
15</div>
16
17<div class="container-fluid">
18<% if ( typeof result != 'undefined' ) {
19 if (result.code.length > 0) {
20 if ( result.code == 'success' ) { %>
21 <pre class='alert alert-success' role='alert'><%=JSON.stringify(result.msg,null,4) %></pre>
22 <% } else { %>
23 <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
24 <% } %>
25 <% } %>
26<% } %>
27</div>
28
29
30<footer>
31 <% include ../partials/footer %>
32</footer>
33
34</body>
35</html>
36