Google Login Placeholder

Google OAuth is not fully configured. To enable:

  1. Install Google API PHP Client (composer require google/apiclient)
  2. Set GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, and GOOGLE_REDIRECT_URI in config.php.
  3. Implement an OAuth flow in google_callback.php to exchange code for user info and create/login tenant user.

Example: Google OAuth 2.0 docs

If you want, I can implement the complete Google OAuth flow (requires you to provide client ID & secret or set them later in config).

Back to Login