This repository has been archived on 2026-03-21. You can view files and clone it, but cannot push or open issues or pull requests.
payfrit-biz/portal/login.html

17 lines
494 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Payfrit Business Portal</title>
<script>
// Redirect to signup.html - single auth entry point
// Existing users verified by phone get their existing account
// New users go through full setup flow
window.location.replace('signup.html');
</script>
</head>
<body>
<p>Redirecting...</p>
</body>
</html>