-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.01 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Sign In with Auth0</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="container">
</div>
<!--[if IE 8]>
<script src="//cdnjs.cloudflare.com/ajax/libs/ie8/0.2.5/ie8.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<script src="https://cdn.auth0.com/js/base64.js"></script>
<script src="https://cdn.auth0.com/js/es5-shim.min.js"></script>
<![endif]-->
<script src="/assets/bundle.js" ></script>
<script>
loginComponent.render(
document.getElementById('container'),
{
auth0Domain: 'brucke.auth0.com',
clientID: 'k5u3o2fiAA8XweXEEX604KCwCjzjtMU6',
callbackURL: 'http://localhost:3000/example',
extraParams: {},
internalOptions: {
response_type: 'token',
client_id: 'k5u3o2fiAA8XweXEEX604KCwCjzjtMU6'
}
}
);
</script>
</body>
</html>