We have a signup form that asks for the usual information about name, address, email etc.
After the user has submitted that information we want to ask them if they want to sign into the site using their social media accounts. I tried having the activity chain go to signup but it doesn't allow a page that doesn't have a slug.
How do we make this work?
Hello Ethan,
You can do this a couple of ways, but one is to create a page with a couple of large icons for both FB and Twitter, and some kind of prompt letting people know what's happening. The liquid outputs that generate links for both FB & Twitter SSO are:
{{ request.facebook_connect_url }}
{{ request.twitter_connect_url }}
Here is sample code from the Victory theme that does just that:
< div class="widget connect">
< h3>Connect</h3>
< p>You can join us using</p>
< ul class="connect-links">
< li class="fb"><a title="Connect through Facebook" href="{{ request.facebook_connect_url }}">Connect through Facebook</a></ li>
< li class="twt"><a title="Connect through Twitter" href="{{ request.twitter_connect_url }}">Connect through Twitter</a></li>
< li class="mail"><a title="Connect through your e-mail" href="/login">Connect through your e-mail</a></li>
< /ul>
< /div><!-- .widget connect -->
Thanks.
Showing 2 reactions
Sign in with
Campaign Gears
Certified Architect
Campaign Gears
Certified Architect