Front Page QA | submt login

FEATURE: Add Anon and Random Name Generator for account Registration

7 Points, by ianegan 32d ago
Create Anonymous and Random Login Generation for a New User Registration.

Answer Count: 2

3 c34020582d 24d ago
Have anonymized user names now... when registering a user check the box next to user name for that says 'Gen User Name' and a anonymized user name will auto magically fill in the username field.

Register as Anon User

reply
2 ianegan 26d ago
Do this...

   import uuid

# Generate a random UUID rand_uuid = uuid.uuid4()

# Convert the UUID object to a string anon_username = 'anon' + str(rand_uuid).replace('-', '')

reply