Having Problems logging in (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Having Problems logging in (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Having Problems logging in (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Having Problems logging in

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

Having Problems logging in

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎03-08-202111:44 AM

Hello My Name is Edward Rutledge, I'm having a problem logging in can someone admin reset my password. Thank you

Labels (2)

Labels

  • Labels:
  • Admin

  • Administrator

I also have this question

0Likes

  • All forum topics
  • Previous Topic
  • Next Topic

3 Replies

Having Problems logging in (15)

Having Problems logging in (16)Chris_Hofer

Community Coach

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎03-09-202104:37 PM

Good afternoon,@EdwardRutledge...

For clarification, are you using the Free For Teachers version of Canvas? Or, does your school have a paid version of Canvas? Also, are you an instructor, student, or a Canvas administrator? If your school has a paid account, you may need to talk with your school's local Canvas administrator or someone from your school's Online Learning/eLearning department to see if they can help you with your password. Here are some Guides that may help for the time being:

  • How do I change my login password as an instructor... - Canvas Community
  • How do I reset my password as an instructor? - Canvas Community
  • How do I change my login password as a student? - Canvas Community
  • How do I reset my password as a student? - Canvas Community

Looking forward to hearing back from you soon, Edward. Keep us posted...thanks! Take care...be well.

0Likes

Having Problems logging in (17)

EdwardRutledge

Community Member

Author

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎03-09-202105:13 PM

yes

0Likes

Having Problems logging in (18)

Having Problems logging in (19)Chris_Hofer

Community Coach

In response to EdwardRutledge

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎03-09-202105:31 PM

Hi again,@EdwardRutledge...

Sorry, I don't know what "yes" means as it relates to the questions I asked. Could you provide some additional details, please?

0Likes

Having Problems logging in (20)

Unanswered Topics

  • QB not retaining questions

  • Compose Message

  • Delayed Announcements Showing Created Date

  • Canvas resubmit button

  • Attendance (Roll Call) Combine all sections

View All

Latest Topics

  • QB not retaining questions

  • Compose Message

  • rubric from another course

  • Delayed Announcements Showing Created Date

  • Canvas resubmit button

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructure Community, you need to sign up or log in:

Sign In

Having Problems logging in (2024)
Top Articles
15 Minutes With: Cindy Eckert Talks About the First FDA-Approved Pink Pill for Low Libido in Women
Shilajit Is Called 'Nature’s Viagra.' Does It Work?
NOAA: National Oceanic &amp; Atmospheric Administration hiring NOAA Commissioned Officer: Inter-Service Transfer in Spokane Valley, WA | LinkedIn
Why Are Fuel Leaks A Problem Aceable
Where are the Best Boxing Gyms in the UK? - JD Sports
Amc Near My Location
Devon Lannigan Obituary
Voordelige mode in topkwaliteit shoppen
Explore Tarot: Your Ultimate Tarot Cheat Sheet for Beginners
Insidious 5 Showtimes Near Cinemark Tinseltown 290 And Xd
Wells Fargo Careers Log In
Terraria Enchanting
Comcast Xfinity Outage in Kipton, Ohio
Parks in Wien gesperrt
Where's The Nearest Wendy's
Bme Flowchart Psu
Uvalde Topic
Detroit Lions 50 50
Top Hat Trailer Wiring Diagram
More Apt To Complain Crossword
Help with Choosing Parts
House Party 2023 Showtimes Near Marcus North Shore Cinema
24 Best Things To Do in Great Yarmouth Norfolk
Mile Split Fl
Samantha Lyne Wikipedia
Transfer and Pay with Wells Fargo Online®
Diamond Piers Menards
Airrack hiring Associate Producer in Los Angeles, CA | LinkedIn
Nurse Logic 2.0 Testing And Remediation Advanced Test
Ppm Claims Amynta
Unionjobsclearinghouse
U Of Arizona Phonebook
Coomeet Premium Mod Apk For Pc
Mini Handy 2024: Die besten Mini Smartphones | Purdroid.de
Inbanithi Age
Does Hunter Schafer Have A Dick
Weather Underground Durham
Valley Craigslist
How often should you visit your Barber?
Indiana Jones 5 Showtimes Near Jamaica Multiplex Cinemas
Nacogdoches, Texas: Step Back in Time in Texas' Oldest Town
Spy School Secrets - Canada's History
The 38 Best Restaurants in Montreal
Tableaux, mobilier et objets d'art
Walmart Careers Stocker
Large Pawn Shops Near Me
Dagelijkse hooikoortsradar: deze pollen zitten nu in de lucht
Boyfriends Extra Chapter 6
Craigslist Marshfield Mo
Craigslist Free Cats Near Me
Www Ventusky
Suzanne Olsen Swift River
Latest Posts
Article information

Author: Edmund Hettinger DC

Last Updated:

Views: 5675

Rating: 4.8 / 5 (58 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Edmund Hettinger DC

Birthday: 1994-08-17

Address: 2033 Gerhold Pine, Port Jocelyn, VA 12101-5654

Phone: +8524399971620

Job: Central Manufacturing Supervisor

Hobby: Jogging, Metalworking, Tai chi, Shopping, Puzzles, Rock climbing, Crocheting

Introduction: My name is Edmund Hettinger DC, I am a adventurous, colorful, gifted, determined, precious, open, colorful person who loves writing and wants to share my knowledge and understanding with you.