Subversion Repositories php_users

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
22 rodolico 1
Add functions to change enabled and password programmatically. This 
2
would allow programmers to create a password recovery feature, or 
3
disable a user if a hacking attempt was detected.
4
 
5
Add functionality to allow other HTML fields such as color, email, etc...
6
This could probably be done by change <INPUT type='text' ... to
7
<INPUT type='%s' ...> if it turns out all of the other new classes are
8
of the same structure. Then, we could take type='text' and use the template
9
named 'default' and, any time a field was created with an unknown type
10
simply take the type and paste it into the default template.
11
 
12
Set up a password recovery that would change the users password, then 
13
e-mail the new password to them. See if maybe the programmer would be 
14
able to override the password recovery with an external function?