It occurred to me that I never actually got into the nitty-gritty of my last post with some JavaScript code examples, and how easy it can be without being restricted to using templates that you need to force to make work. Take these first scripts: First, after including the API required, the first part is simply declaring your Domain and Client ID which you can find from the application's dashboard. The next two functions, _connectSocial and _login . Are very similar. The first takes a string of the social you would like to link (providing you have enabled it in your application within Auth0), and produces a popup modal for the user to enter their credentials. The second function allows you to simply pass a username and password which you can use values from a form you create. You'll notice for both functions, it has a parameter it is passing called redirectUri . Here I am specifying for it to come back to the same page after the authentication has processed. Be s