You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Try Again!
<script>
const urlParams = new URLSearchParams(window.location.search);
// Get the value of a specific parameter
const message = urlParams.get('message');
const messageContainer = document.getElementById('messageContainer');
messageContainer.textContent = message;
</script>