Hi Atlassian Support,
Could you please suggest how to add customized text in the confluence login page? We need to show the text somewhere within the "Log In" section. Kindly suggest. We are using confluence v7.3.3.
Regards,
Bhuvana
Please follow the below steps to add the text.
Thanks,
Manisha
Thank you!
If we want to have the text below Log in, how we can do it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do this using pure CSS so that you don't need to change any velocity templates.
Something like this for example:
.login-form-container fieldset:before {
font-size:0.9em;
display:inline-block;
content:'Your text here....';
}
This will add text just below the login title.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Much simpler and safer than modifying the Velocity template.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!
Pls, let me know where this needs to be added. in the .vm file ?
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.