Hi,
I don't want my users to compulsorily have a Google account. Yesterday
i was creating a very simple login page for my app. And i was stuck at
creating a password field. I have a Model User, which when simplified
looks like
class User(db.Model):
"The User Class"
PersonId = db.ReferenceProperty(Person)
userName = db.StringProperty(required=True)
password = db.StringProperty(required=True)
email = db.EmailProperty(required=False)
status = db.StringProperty(required=True, choices =
( 'Active','Suspended','Deleted', ))
Now i need to create a login/ new user form/ update profile pages,
which all require a password box. I have been creating forms from the
dbModel using google.appengine.ext.db.djangoforms. Can anyone tell me
how do i create a password widget?
Now the element of surprise. Yesterday i discussed this in IRC
Channel, and appengineers out there were clueless what happened. I
searched this group with the keyword 'password' and i got 1 result,
and that too suggesting me to use google account. Is my app the only
one that will be using authentication methods apart from the google
account(if this question is answered by someone) !!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---