aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/pages/home.ejs.orig
blob: 353bc457f347d7f07b0defec1964855ddaaeeca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <title>SDN-C Admin Portal</title>
  </head>
  <body>
    <h1>SDN-C Admin Portal</h1>
    <p>Welcome to SDN-C Admin Portal</p>
<% if ( typeof loggedInAdmin != 'undefined') { %>
    <p><%= loggedInAdmin.firstName %></p>
<% } %>
<% if ( typeof result != 'undefined') { %>
    <p><%= result %></p>
<% } %>
<% if ( typeof errmsg != 'undefined') { %>
    <p><%= errmsg %></p>
<% } %>

  </body>
</html>