Customizing Login Page
If you want to customize/replace the login page completely then you can also add a special LOGIN_FORM_PLACEHOLDER text to the Login Text page. The result will be that:
• The LOGIN_FORM_PLACEHOLDER text is replaced with the login form during render
• All other decorations around the login form is removed. So you are free to add your wiki or html content, and using a html plugin you can even add custom style to the login page.
This is a very minimalistic example for customized Login Text:
[{Html
<html>
<head>
<style>
body {
background-color: #cceedd;
}
h1 {
color: green;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 20px;
}
</style>
</head>
<body>
<h1>My codeBeamer Login Page</h1>
<p>Very simple example for customizing the login page.</p>
<p>LOGIN_FORM_PLACEHOLDER</p>
</body>
</html>
}]