-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Sanford Whiteman Sep 19, 2018 8:04 PM (in response to Spencer Phillips)They are worried that the URL will be forwarded within our customer companies and that people who are not on our list will register.
If the URL includes the self-identifying mkt_tok (as is the default for emailed links) and you're using Pre-Fill on the form, then you could lock down and gray out the form input. A non-malicious user will see they're about to submit as "Jill Executive" and will not be able to change the form fields to reflect their own identity. (You should of course also note exactly what you're doing, i.e. this event is by invitation only, etc.) This is only casual, good faith protection: it will not prevent a malicious user from hitting view-source and hacking around the restriction. But it will mean that nobody can accidentally sign up who wasn't on the list.
An example of such a form is here, just takes a couple lines of JS:
Here's a live demo: MktoFoms2 :: Read-Only Form
Now, if you need to offer the signup form to people who don't receive the mkt_tok-enized link, i.e. to direct traffic, then you're going to need something more robust, namely a Lookup Form that first sees if they have certain characteristics, and only then shows them the summit registration form. I've posted in the past about how to use a Marketo form as a lookup form.
-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Jay Jiang Sep 19, 2018 3:05 PM (in response to Spencer Phillips)You could confirm registration by email after a person fills out the registration form. You'd need 1 email for confirm and 1 email for reject and your invitees added to a static list.
your smart campaign trigger would be fills out form. flow would be send email choice #1 "if member of list = invite list" => send confirm email. default choice => send reject email. Similarly your program status can be change status to registered if member of invite list.
-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Sanford Whiteman Sep 19, 2018 3:18 PM (in response to Jay Jiang)Except they explicitly don't want to turn people down, per the OP.
-
-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Sanford Whiteman Sep 20, 2018 12:30 PM (in response to Spencer Phillips)1 of 1 people found this helpfulOP please return to this thread to check responses from the Nation.
-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Spencer Phillips Sep 20, 2018 1:50 PM (in response to Sanford Whiteman)Sanford Whiteman thanks for the nudge. Your first post is spot on and provides the solution to my original question. My question now is - is it possible to just show a button on an lp that registers someone on button click, hiding the form form the user so we can still track who clicked the button...
-
Re: How To Lock Down Event Registration Form To Limit Registration to a List
Sanford Whiteman Sep 20, 2018 2:47 PM (in response to Spencer Phillips)is it possible to just show a button on an lp that registers someone on button click, hiding the form form the user so we can still track who clicked the button...
Sure, a form doesn't need any fields.
-
-