-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (78 loc) · 3.5 KB
/
index.html
File metadata and controls
79 lines (78 loc) · 3.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html>
<head>
<title>E2E Test Index | ForgeRock JavaScript SDK</title>
<link rel="shortcut icon" href="/fr-ico.png" type="image/png" />
<style>
@media (prefers-color-scheme: dark) {
html {
background-color: black;
color: white;
}
a {
color: lightblue;
}
a:visited {
color: lavender;
}
a:hover {
color: lightskyblue;
}
}
</style>
</head>
<body>
<a href="./src/authn-basic/index.html">AuthN: Basic</a><br />
<a href="./src/authn-basic-self-service/">AuthN: Self Service</a><br />
<a href="./src/authn-central-login/index.html">AuthN: Central Login</a><br />
<a href="./src/authn-central-login-no-iframe/index.html">AuthN: Central Login, no iframe</a
><br />
<a href="./src/authn-central-logout/index.html">AuthN: Central Logout Ping</a><br />
<a href="./src/authn-central-logout-wellknown/index.html"
>AuthN: Central Logout with Wellknown</a
><br />
<a href="./src/authn-device-profile/index.html">AuthN: Device Profile</a><br />
<a href="./src/authn-protect/index.html">AuthN: Ping Protect</a><br />
<a href="./src/authn-email-suspend/index.html">AuthN: Email Suspend</a><br />
<a href="./src/authn-recaptcha-enterprise/index.html">AuthN: Recaptcha Enterprise</a><br />
<a href="./src/authn-no-session/index.html">AuthN: No Session</a><br />
<a href="./src/authn-oauth/index.html">AuthN: OAuth</a><br />
<a href="./src/authn-platform/index.html">AuthN: Platform Login</a><br />
<a href="./src/authn-second-factor/index.html">AuthN: Second Factor</a><br />
<a href="./src/authn-saml/index.html">AuthN: SAML</a><br />
<a href="./src/authn-social-login-am/index.html">AuthN: Social Login AM</a><br />
<a href="./src/authn-protect-metadata/index.html">AuthN: Protect Metadata AM</a><br />
<a href="./src/authn-social-login-idm/index.html">AuthN: Social Login IDM</a><br />
<a href="./src/authn-webauthn/index.html">AuthN: WebAuthn</a><br />
<a href="./src/authn-webauthn-device-registration/index.html">
AuthN: WebAuthN Device Registration
</a>
<br />
<a href="./src/authn-otp-reg/index.html">AuthN: OTP Registration (QR Code)</a><br />
<a href="./src/authz-token/index.html">AuthZ: Token</a><br />
<a href="./src/authz-tree-basic-redirect/index.html">
AuthZ: Tree-based with Basic Login and Redirect response
</a>
<br />
<a href="./src/authz-tree-basic-json/index.html">
AuthZ: Tree-based with Basic Login and JSON response
</a>
<br />
<a href="./src/authz-tree-oauth/index.html">AuthZ: Tree-based with OAuth</a><br />
<a href="./src/authz-txn-basic-redirect/index.html"
>AuthZ: Txn-based with Basic Login and Redirect response
</a>
<br />
<a href="./src/authz-txn-basic-json/index.html"
>AuthZ: Txn-based with Basic Login and JSON response
</a>
<br />
<a href="./src/authz-txn-oauth/index.html">AuthZ: Txn-based with OAuth</a><br />
<a href="./src/config-custom-paths/index.html">Config: Custom Path</a><br />
<a href="./src/config-request-middleware/index.html">Config: Request Middleware</a><br />
<a href="./src/config-token-storage/index.html">Config: Token Storage</a><br />
<a href="./src/misc-callbacks/index.html">Misc Callbacks</a><br />
<a href="./src/register-basic/index.html">Registration</a><br />
<a href="./src/umd-bundle-check/index.html">UMD Bundle Check</a><br />
</body>
</html>