17 lines
494 B
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>
|