oauth2-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,43 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Authorization Complete</title>
7
+ <link
8
+ href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
9
+ rel="stylesheet"
10
+ integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
11
+ crossorigin="anonymous"
12
+ />
13
+ <style>
14
+ .wrapper {
15
+ display: grid;
16
+ grid-template-columns: 1fr auto 1fr;
17
+ grid-template-rows: 1fr auto 1.61803fr;
18
+ position: absolute;
19
+ width: 100vw;
20
+ height: 100vh;
21
+ top: 0;
22
+ left: 0;
23
+ }
24
+ .center {
25
+ grid-row: 2;
26
+ grid-column: 2;
27
+ }
28
+ </style>
29
+ </head>
30
+ <body>
31
+ <div class="wrapper">
32
+ <div class="center container">
33
+ <h1>Authorization Complete</h1>
34
+ <p>You may close this window.</p>
35
+ </div>
36
+ </div>
37
+ <script
38
+ src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
39
+ integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
40
+ crossorigin="anonymous"
41
+ ></script>
42
+ </body>
43
+ </html>
@@ -0,0 +1,48 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Authorization Complete</title>
7
+ <link
8
+ href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
9
+ rel="stylesheet"
10
+ integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
11
+ crossorigin="anonymous"
12
+ />
13
+ <style>
14
+ .wrapper {
15
+ display: grid;
16
+ grid-template-columns: 1fr auto 1fr;
17
+ grid-template-rows: 1fr auto 1.61803fr;
18
+ position: absolute;
19
+ width: 100vw;
20
+ height: 100vh;
21
+ top: 0;
22
+ left: 0;
23
+ }
24
+ .center {
25
+ grid-row: 2;
26
+ grid-column: 2;
27
+ }
28
+ </style>
29
+ </head>
30
+ <body>
31
+ <div class="wrapper">
32
+ <div class="center container">
33
+ <h1>Error Authorizing</h1>
34
+ <div class="alert alert-error" role="alert">
35
+ <% if (typeof error === 'string') { %><%= error %><<% } else { %>
36
+ <pre><%= JSON.stringify(error,null,2) %></pre>
37
+ <% } %>
38
+ </div>
39
+ <p>You may close this window.</p>
40
+ </div>
41
+ </div>
42
+ <script
43
+ src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
44
+ integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
45
+ crossorigin="anonymous"
46
+ ></script>
47
+ </body>
48
+ </html>