Is this data going to be cleared before the system is actually implemented? If not, I can't remember what the hell my password is, and the email I got only contains the activation number, and not password or anything.
The password is never even sent to the server for security purposes. It gets hashed by the javascript then salted and hashed again before being stored in the database. On top of that, you can use the HTTPS connection to really make sure nobody can sniff your password out. In other words, even a high-level admin has no way of getting your password. I tried to make it as secure as possible so the people who don't want one more password to remember can use it.
I'm impressed of your work Jits, really great. I can't wait till the new build is coming and the login system begins to work.
one little problem: i created a clan, then removed myself, i think. now, no one is leader and no one can control the clan. what now? (MeMi)
If there are members in the clan and you are the only leader, it shouldn't let you remove your leader status or leave the clan without promoting somebody else to leader. I'll have to double check that. I can go and manually set you back to leader, though.
Nice work Jitspoe but the age calculator is not working properly... It is listing me as 36 with the birthdate 1962-05-27 Although I would love to be 36 or less again, I am 44 LOL
Strange. Seemed to work fine for my age. Maybe it has trouble calculating numbers that high.
Edit: Just verified the age thing. That's weird. All it does is convert your entered date to a unix date, subtract it from the current unix date, and divide by the number of seconds in a year. Unless Google lied to me when it said "1 year = 31 556 926 seconds", I don't see how that could not work.
Maybe there's a "feel good" factor in PHP that needs to be adjusted.
Edit2: Haha, I know why. Unix epoch is 1970. You're too old for the system, man. I'll have to find a different way to calculate age or just use "36+".