mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Updated web pages
This commit is contained in:
parent
df717b480a
commit
5fa17355a6
2 changed files with 14 additions and 0 deletions
|
|
@ -1,4 +1,16 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
Redirecting you to sign-in page...
|
Redirecting you to sign-in page...
|
||||||
|
<script>
|
||||||
|
function _sleep(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
async function sleep(s) {
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
await sleep(i * 1000)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sleep(5000)
|
||||||
|
window.location.replace("{{loginUrl}}")
|
||||||
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
Success! Here's you access token:
|
Success! Here's you access token:
|
||||||
|
|
||||||
|
{{access_token}}
|
||||||
...
|
...
|
||||||
You will need this token to access protected services and resources.
|
You will need this token to access protected services and resources.
|
||||||
Make sure to include it in the authorization header when making a HTTP request:
|
Make sure to include it in the authorization header when making a HTTP request:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue