25 lines
1015 B
HTML
25 lines
1015 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Redirecting to Google Maps...</title>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const urlParams = new URLSearchParams(window.location.search);
|
|
const token = urlParams.get('token');
|
|
const storedToken = localStorage.getItem('googleMapsAccessToken');
|
|
|
|
if (token && token === storedToken) {
|
|
// Clear the token from local storage after use to ensure it's one-time use
|
|
localStorage.removeItem('googleMapsAccessToken');
|
|
window.location.href = 'https://www.google.com/maps/d/u/0/viewer?mid=1uaJCMW64w_zwERr9nFcVJchrZdocNbA&ll=39.035283304733184%2C-105.2908042761522&z=14&utm_source=website&utm_medium=button&utm_campaign=map_redirect';
|
|
} else {
|
|
document.body.innerHTML = 'Access denied. Invalid or expired token.';
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Redirecting to Google Maps...
|
|
</body>
|
|
</html>
|