Skip to content

Commit 32b2a3f

Browse files
committed
updat
1 parent e4e97e2 commit 32b2a3f

File tree

15 files changed

+1275
-1
lines changed

15 files changed

+1275
-1
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"semi": false,
3+
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
This package showcases how to login using OAuth with the JS Package.
44

55
https://developer.audiotool.com/js-package-documentation
6-
# js-package-oauth-flow-example

audiotool-nexus-0.0.5.tgz

15.3 MB
Binary file not shown.

index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>nexus-example-app</title>
9+
</head>
10+
11+
<body>
12+
<div id="app"></div>
13+
<script type="module" src="/src/main.ts"></script>
14+
<button id="login-button" style="display: none;">Login</button>
15+
<button id="logout-button" style="display: none;">Logout</button>
16+
<p>Status: <span id="status">Pending...</span></p>
17+
<div id="user-info"></div>
18+
<div id="projects"></div>
19+
</body>
20+
21+
</html>

0 commit comments

Comments
 (0)