diff options
Diffstat (limited to 'admportal/views/sla/printasxml.ejs')
-rw-r--r-- | admportal/views/sla/printasxml.ejs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/admportal/views/sla/printasxml.ejs b/admportal/views/sla/printasxml.ejs new file mode 100644 index 00000000..48b55049 --- /dev/null +++ b/admportal/views/sla/printasxml.ejs @@ -0,0 +1,35 @@ +<!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="well well-sm"> +<h3>Service Logic Code</h3> +</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'><%=result.msg %></pre> + <% } else { %> + <pre class='alert alert-danger' role='danger'><%=result.msg %></pre> + <% } %> + <% } %> +<% } %> +</div> + + +<footer> + <% include ../partials/footer %> +</footer> + +</body> +</html> + |