blob: 971feda6e6e9abffc2d495493a93266aeb9e7ce3 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<!DOCTYPE html>
2<html lang="en">
3<head>
4
5<% if (header == 'gamma') { %>
6 <title>SDN-C AdminPortal</title>
7<% } else if(header == 'sdn-mlc'){ %>
8 <title>SDNC-MLC AdminPortal</title>
9<% } else { %>
10 <title>SDN-C AdminPortal</title>
11<% } %>
12
13 <meta charset="utf-8" />
14 <meta http-equiv="X-UA-Compatible" content="IE=edge">
15 <% include ../partials/head %>
16</head>
17<body class="container">
18
19<div class="actions" style="padding:0px 25px;">
20<% if (header == 'gamma') { %>
21 <h2>SDN-C Admin Portal</h2>
22<% } else if(header == 'sdn-mlc'){ %>
23 <h2>SDNC-MLC Admin Portal</h2>
24<% } else { %>
25 <h2>SDN-C Admin Portal</h2>
26<% } %>
27</div>
28
29<% if ( typeof result != 'undefined' ) {
30 if (result.code.length > 0) {
31 if ( result.code == 'success' ) { %>
32 <div class='alert alert-success' role='alert'><%=result.msg %></div>
33 <% } else { %>
34 <div class='alert alert-danger' role='danger'><%=result.msg %></div>
35 <% } %>
36 <% } %>
37<% } %>
38
39<p><a href="/login">Click here to login</a></p>
40
41
42<footer>
43 <% include ../partials/footer %>
44</footer>
45
46</body>
47</html>