views:

29

answers:

1

In google app engine, there is file called login. I need to modify this login file. It is in my local host, but I can't find out where it is stored.

Can anybody help me to find the solution?

+2  A: 

If you're referring to /_ah/login, this is a stub page provided by the development server to represent the Google Accounts sign in page you will see in production. The sign in page in prod is not under your control, so there would be little point in modifying the dev version.

If you'd like to design your own login page, consider using Federated Login or a custom authentication library not integrated with Google Accounts.

Drew Sears