Hmm I'm not clicking that link clearly some spammy attempt or worst.
best aproach for public event registration form
I need to implement the below feature for my event management system. How best to approach this.
An public event is held and public participant can sign up to the event via a unique link (containing the EventID). The event would be pre-created by the coordinator prior to allowing public registration.
Public need to be able to register for the event (or future events under the same user ID). After registration they will be created an account (tied to email address) and need to login and update their fund raising effort (they get others to support them by raising funds).
We currently get them to Register using a Google Form but wants to migrate this to a Laravel App to be more automated and provide other features.
I'm not sure how to create a 'registration form' for user to register to participate to an event.
- The user needs to be able to enter all the relevant require details in one hit. 2)Once user register then normal account validation by email with unique link. So we don't get Spam registration. 3)The user may or may not have an existing account (from a previous year). If have existing account (tied to email) then prompt them to use that.
I've seen a few example of extending the default user registration form. However that only involve one or two extra filed that gets added as part of the Users table. I need to store info in other tables.
Thanks you.
Please or to participate in this conversation.