-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoauth-callback.html
More file actions
33 lines (32 loc) · 1.22 KB
/
oauth-callback.html
File metadata and controls
33 lines (32 loc) · 1.22 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Status Reports for Jira OAuth Callback</title>
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link rel="stylesheet" href="/dist/production.css" />
</head>
<body class="color-bg-white overflow-x-hidden">
<div class="color-bg-white px-2 sticky top-0 z-50">
<nav class="mx-auto py-2 place-center w-1280">
<div class="flex" style="align-items: center">
<ul class="flex gap-3 grow items-baseline">
<li>
<a
href="https://github.com/bitovi/jira-timeline-report"
class="color-gray-900 font-3xl underline-on-hover bitovi-font-poppins font-bold"
>Status Reports for Jira - Authorization Callback</a
>
</li>
</ul>
</div>
</nav>
</div>
<div id="mainElement" class="place-center w-1280 my-2 text-lg">
<p class="">You will be redirected in one moment.</p>
</div>
<script type="module" src="/src/oauth-callback.ts"></script>
</body>
</html>