aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/pages/home.ejs
blob: 3eb4a0a90cc6ae07931f02c60f65dce36e70fb21 (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
<!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 class="container">

<div class="actions" style="padding:0px 25px;">
<h2>SDN-C Admin Portal</h2>
</div>

<% if ( typeof result != 'undefined' ) {
        if (result.code.length > 0) {
            if ( result.code == 'success' ) { %>
                <pre class='alert alert-success' role='alert'><%=result.msg %></pre>
            <% } else { %>
                <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
            <% } %>
        <% } %>
<% } %>


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