2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

Update index.html

This commit is contained in:
Annyv2 2015-11-25 19:09:05 -04:30
parent 575269eaf6
commit 4a905bdcfc

View File

@ -19,6 +19,7 @@
<!-- Setting the right viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script src="auth0-variables.js"></script>
</head>
<body>
<div id="login">
@ -81,7 +82,8 @@
var lock = null;
$(document).ready(function() {
lock = new Auth0Lock('YOUR_CLIENT_ID', 'YOUR_NAMESPACE');
//These are set in auth0-variables.js
lock = new Auth0Lock(auth0Variables.AUTH0_CLIENT_ID, auth0Variables.AUTH0_DOMAIN);
});
</script>
</body>