You'll notice that if you click the login button at the top right you get the plain old Google-branded login page. The page you are looking at is probably just creating a User object with the supplied email. If it's an invalid email it will be an orphaned User object. If it's a valid email you still won't be able to do much with them until they've logged in through the Google-branded page (which appears immediately after you've registered with this site).
http://code.google.com/appengine/docs/python/users/userobjects.html A User instance can be also constructed from an email address: user = users.User("[email protected]") If the User constructor is called with an email address that does not correspond with a valid Google account, the object will be created but it will not correspond with a real Google account. This will be the case even if someone creates a Google account with the given email address after the object is stored. A User value with an email address that does not represent a Google account at the time it is created will never match a User value that represents a real user. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
