I'm just trying to learn GAE, and I learn best by doing, so I wanted to create a website where you can log in. My problem is that after a person has logged in, my app forgets the user. So far I have a main page, discussion page , registration page, and a log in page. I have a handler for each of these pages. At the log in page you can log in, and my app will check if the info is correct. And the current user is known for this handler, but if I change page, this gets wiped out. It would be great if you could help me out.
I know I can use the gmail thing that gae provides and use users.get_current_user(), but like I said, I do this to learn, so I wanted to make my own registration/login form. So in few words: What can I use/do beside users.get_current_user() to get current user that logged in using my log in form.
Thanks!
Newbeginner