I have written a sample servlet and using it to render velocity template for login UI (login.vm). It looks like -
<html>
<head>
<title>Login</title>
<meta name="decorator" content="atl.admin" />
<script>/*javascript code*/</script>
</head>
<body>
/*Login UI*/
</body>
</html>
But login.vm is getting rendered inside Atlassian UI with Atlassian header, footer and navigation bar.
How can I render it as a separate HTML ?
Hello,
Remove the meta part. It should be like this:
<html>
<head>
<title>Login</title>
<script>/*javascript code*/</script>
</head>
<body>
/*Login UI*/
</body>
</html>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.