34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<title>Redirection — MVA Global Fret</title>
|
|
<link rel="icon" type="image/png" href="PNG MVA GLOBAL FRET.png">
|
|
<script>
|
|
// Bridge mobile deep link MVA Expo : redirect vers auth.mind4solutions.com
|
|
// qui héberge le UI reset-password Phase 2.2 m4s-auth.
|
|
// Conserve le query param ?token=... pour que GoTrue PKCE flow continue.
|
|
(function() {
|
|
var params = window.location.search || '';
|
|
var hash = window.location.hash || '';
|
|
window.location.replace('https://auth.mind4solutions.com/reset-password' + params + hash);
|
|
})();
|
|
</script>
|
|
<style>
|
|
body { font-family: system-ui, -apple-system, sans-serif; text-align: center; padding: 2rem; color: #333; }
|
|
a { color: #c5a55a; font-weight: 600; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Redirection en cours...</h1>
|
|
<p>Si la redirection automatique ne fonctionne pas,
|
|
<a id="manual-link" href="https://auth.mind4solutions.com/reset-password">cliquez ici</a>.
|
|
</p>
|
|
<script>
|
|
document.getElementById('manual-link').href = 'https://auth.mind4solutions.com/reset-password' + (window.location.search || '');
|
|
</script>
|
|
</body>
|
|
</html>
|