- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to remove "Need a Canvas Account?"
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I appreciate that and I'm sorry I posted this in the wrong group.
Thanks,
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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();});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Douglas, thank you so much! That is exactly what I was looking for.
