This bookmarklet will bring you from the student welcome page to the teacher dashboard.

Student Welcome Page

Teacher Dashboard

How to use

javascript:(function() {  const currentUrl = window.location.href;  const regex = /activitybuilder\/student-greeting\/([^\/?#]+)/;  const match = currentUrl.match(regex);  if (match) {    const newUrl = %60https://teacher.desmos.com/dashboard/${match[1]}?checkAmplifyLogin=true%60;    window.location.href = newUrl;  } else {    alert("This link only works when you are at the 'Welcome back student page.' See mrkuang.com/desmos");  }})();