aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/mobility/displayVnfData.ejs
blob: 596feb6668b245f48cc06df1ea02d8f7cc55153c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
  <title>SDN-C AdminPortal</title>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <% include ../partials/head %>
  <% include ../partials/header %>
</head>
<body>


<div class="actions" style="padding:0px 25px;">
<h2>VNF Data</h2>
</div>

<div class="container-fluid">
<% if ( typeof result != 'undefined' ) {
        if (result.code.length > 0) {
            if ( result.code == 'success' ) { %>
                <pre class='alert alert-success' role='alert'><%=JSON.stringify(result.msg,null,4) %></pre>
            <% } else { %>
                <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
            <% } %>
        <% } %>
<% } %>
</div>


<footer>
	 <% include ../partials/footer %>
</footer>
    
</body>
</html>