-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Local updates for credential changes and GH issues
- Loading branch information
Showing
87 changed files
with
4,537 additions
and
1,611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
VUE_APP_I18N_LOCALE=en | ||
VUE_APP_I18N_FALLBACK_LOCALE=en | ||
|
||
VUE_APP_SERVER_PORT=64064 | ||
|
||
VUE_APP_YATT_API_URL="https://api.yatt.ai" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!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>YATTIE</title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css"> | ||
<link rel="icon" href="/favicon.ico"> | ||
<style> | ||
body { | ||
margin: 0; | ||
background-color: #fafafa; | ||
border-color: #fafafa; | ||
} | ||
|
||
.wrapper { | ||
width: 100%; | ||
min-height: 100vh; | ||
} | ||
|
||
.container { | ||
padding: 12px; | ||
padding-top: 80px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.container .logo { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.container .notification { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.container .notification span { | ||
background-color: #fff; | ||
border-color: #fff; | ||
border-radius: 4px; | ||
color: rgba(0, 0, 0, .87); | ||
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12) !important; | ||
display: block; | ||
font-size: 20px; | ||
margin-bottom: 16px; | ||
padding: 25px; | ||
position: relative; | ||
transition: .3s cubic-bezier(.25, .8, .5, 1); | ||
border-left: 4px solid #6200ea; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="wrapper"> | ||
<div class="container"> | ||
<div class="logo"> | ||
<img src="/logo.png" alt="logo" width="80"> | ||
</div> | ||
<div class="notification"> | ||
<span>There was an issue while trying to authenticate via JIRA. The JIRA API returned a <span id="responseCode"></span> response code with the message: <span id="responseMessage"></span> Please try again!</span> | ||
</div> | ||
</div> | ||
</div> | ||
<script> | ||
const url = new URL(window.location.href); | ||
const codeSpan = document.getElementById("responseCode"); | ||
const messageSpan = document.getElementById("responseMessage"); | ||
codeSpan.innerText = url.searchParams.get("code"); | ||
codeMessage.innerText = url.searchParams.get("message"); | ||
</script> | ||
</body> | ||
|
||
</html> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.