crodgers
Community Participant

How to remove "Need a Canvas Account?"

Jump to solution

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?

Tags (2)
1 Solution
dbrace
Community Contributor

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.

canvas authentication canvas self-registration disabled

Is this what you are looking for?

View solution in original post

6 Replies
kona
Coach Emeritus

 @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

crodgers
Community Participant

I appreciate that and I'm sorry I posted this in the wrong group. 

Thanks,

Chris

0 Kudos

Hi  @crodgers  Welcometo the Canvas Community! Have no worries, you have done nothing wrong. There is plenty of overlap between these two groups and your question will do just fine shared to both places as it is now. Cheers! 

MattHanes
Community Champion

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();
});
dbrace
Community Contributor

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.

canvas authentication canvas self-registration disabled

Is this what you are looking for?

crodgers
Community Participant

Douglas, thank you so much! That is exactly what I was looking for.