feat: block Gmail/Googlemail email+password sign-up, prompt Google OAuth#343
Merged
Merged
Conversation
When a user enters a gmail.com or googlemail.com email during email+password sign-up, the form now: - Shows an inline info message prompting them to use Continue with Google - Disables the submit button on the client side - Returns a server error if the check is somehow bypassed Co-Authored-By: ben@e2b.dev <ben@e2b.dev>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
ben-fornefeld
approved these changes
May 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Prevents users with
@gmail.comor@googlemail.comemails from signing up with email+password. Instead, they see an inline info message prompting them to use "Continue with Google" OAuth.Changes:
src/lib/utils/email.ts— newisGoogleEmail()helper that checks the email domainsrc/app/(auth)/sign-up/page.tsx— client-side: watches the email field in real time; when a Google email is detected, shows an info banner and disables the submit buttonsrc/core/server/actions/auth-actions.ts— server-side: returns a server error early insignUpActionif the email is Gmail/Googlemail (defense in depth)src/configs/user-messages.ts— adds thesignUpGoogleEmailuser-facing messageReview & Testing Checklist for Human
/sign-up, enter a@gmail.comemail → confirm the info message appears and the submit button is disabled@googlemail.comemail → same behavioruser@company.com) → confirm the form works normallyNotes
Sign-in with email+password is intentionally not blocked — this only affects new sign-ups. Existing users who already signed up with a Google email and password can still sign in.
Link to Devin session: https://app.devin.ai/sessions/05eb9cf06f4c4e3f9527f0358675235f