site-mva-global-fret/reset-password.html
Serge RAKOTO HARRY-NAIVO 5c3af25e6b feat(seo): sitemap + robots.txt + mobile reset-password bridge
- sitemap.xml lists 11 indexable pages (excludes confirmation + reset-password)
- robots.txt allows all + disallows worker dir + .github
- reset-password.html redirects to auth.mind4solutions.com/reset-password
  (mobile MVA Expo deep link bridge for Phase 2.2 forgot-password flow,
   preserves ?token= query param for GoTrue PKCE continuation)

Refs: WordPress \xe2\x86\x92 static migration plan, Phase B PR #2.
2026-05-07 00:03:31 +02:00

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>