Updated web pages

This commit is contained in:
David J. Allen 2024-02-24 21:03:51 -07:00
parent df717b480a
commit 5fa17355a6
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
2 changed files with 14 additions and 0 deletions

View file

@ -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>

View file

@ -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: