-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.98 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
<html>
<head>
<!-- Angular Scrips -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<!-- Angular's Router Library for SPA -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0-rc.0/angular-route.js"></script>
<!-- Okta App Auth SDK -->
<script src="/OktaAuth.min.js" type="text/javascript"></script>
<script src="/okta-angular.js" type="text/javascript"></script>
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Viewport settings-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body>
<header>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="#/">
<img src="https://www.okta.com/sites/all/themes/Okta/images/logo.svg" height="100%" width="100%"/>
</a>
</div>
</div>
</nav>
</header>
<br/><br/><br/><br/><br/>
<div class="col-md-12" align="center">
<div class="col-lg-6">
<img class="img-thumbnail" src="../assets/okta_login.png" width="240" height="240">
<h2>Sign-In Widget</h2>
<p><a class="btn btn-primary" href="login-widget-oidc/#login" role="button">Try Me</a></p>
</div>
<div class="col-lg-6">
<img class="img-thumbnail" src="../assets/custom_login.png" width="240" height="240">
<h2>Custom Sign-In</h2>
<p><a class="btn btn-primary" href="custom-login/#login" role="button">Try Me</a></p>
</div>
</div>
</body>
</html>