-
Notifications
You must be signed in to change notification settings - Fork 11
/
widget.html
44 lines (37 loc) · 1.89 KB
/
widget.html
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
38
39
40
41
42
43
44
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Okta Sign-In Widget Sample</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
<!-- Core widget js and css -->
<script src="https://ok1static.oktacdn.com/assets/js/sdk/okta-signin-widget/1.11.0/js/okta-sign-in.min.js" type="text/javascript"></script>
<link href="https://ok1static.oktacdn.com/assets/js/sdk/okta-signin-widget/1.11.0/css/okta-sign-in.min.css" type="text/css" rel="stylesheet">
<!-- Customizable css theme options. Link your own customized copy of this file or override styles in-line -->
<link href="https://ok1static.oktacdn.com/assets/js/sdk/okta-signin-widget/1.11.0/css/okta-theme.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="css/widget-main.css">
<!-- JSON Web Token Syntax Highlighting -->
<script src="/js/highlight.min.js"></script>
<link rel="stylesheet" href="css/highlight.min.css">
<!-- App Script -->
<script data-main="js/widget-app" src="js/require.js"></script>
</head>
<body>
<!-- Render the login widget here -->
<div id="container">
<div id="widget"></div>
<div id="claims" class="claims">
<pre><code class="json"></code></pre>
</div>
<div id="actions" class="actions center margin-top hide"></div>
<div id="api-resources" class="api-resources center margin-top hide"></div>
<div id="error" class="error center margin-top "></div>
</div>
</body>
</html>