<!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>