Your Community is getting an upgrade!
Read about our partnership with Higher Logic and how we will build the next generation of the Instructure Community.
Currently I'm practicing with the Theme editor and I can't seem to find a way to remove the "Need a Canvas Account?" from our login page. See attached image for reference.
How can I edit the HTML of the login page to remove certain items that we do not want or need?
Solved! Go to Solution.
I know that this original question was answered by using Javascript code but I believe the ability to remove this is natively built into the options in the "Authentication" tab in the "Canvas" section.
If you set the "Self Registration" option to "Disabled" that should cause it to go away.
I am a new Canvas admin, we have our first set of early adopters being trained now and this is how I removed the option.
Is this what you are looking for?
@crodgers , welcome! Due to the technical nature of your question I'm going to share it with the Canvas Developers group in the Community. They are often the ones that do this type of thing and should be able to help!
Kona
I appreciate that and I'm sorry I posted this in the wrong group.
Thanks,
Chris
You can edit things on your login page using your custom Javascript file and custom CSS. You could add something like this to your javascript file:
$(document).ready(function() {
$('#register_link').hide();});
I know that this original question was answered by using Javascript code but I believe the ability to remove this is natively built into the options in the "Authentication" tab in the "Canvas" section.
If you set the "Self Registration" option to "Disabled" that should cause it to go away.
I am a new Canvas admin, we have our first set of early adopters being trained now and this is how I removed the option.
Is this what you are looking for?
Douglas, thank you so much! That is exactly what I was looking for.
To interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign InTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign In
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.