I have a site catering to multiple clubs, and each club has administrators who maintain a database of club members. I want to limit site registration only to members who have explicitly been added to the club's database. How do I go about auto-generating and sending out registration links to members as they are added to the database? In other words, I want registration to be initiated only by club administrators.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
To limit registrations to people already in the database, you will need some way to identify them.
|
|||
|
|
|
You said you have a database of club members already, so you must have a primary key or a tuple which is unique for that database like a club registration number which club members should know already
|
|||
|
|