2024-04-26 21:12:56 +01:00
|
|
|
<!DOCTYPE html>
|
2024-04-29 01:45:22 +01:00
|
|
|
<html lang="en">
|
2024-04-26 21:12:56 +01:00
|
|
|
<head>
|
2024-05-16 17:58:11 +01:00
|
|
|
<link rel="stylesheet" href="/static/css/style.css" media="">
|
2024-04-26 21:12:56 +01:00
|
|
|
<script src="/static/js/dashboard.js"></script>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<title>Dashboard - {{ .identifier }}</title>
|
2024-04-26 21:12:56 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
<img src="/static/img/background.png" class="background" alt="">
|
2024-05-18 00:51:36 +01:00
|
|
|
<div style="position: fixed;top: 5px;"><button onclick="document.getElementById('iframe').classList.toggle('hidden');" class="acctbutton">Account</button><iframe id="iframe" src="/account" class="iframe hidden"></iframe></div>
|
2024-04-26 21:12:56 +01:00
|
|
|
<div class="newoauth">
|
2024-05-06 12:53:04 +01:00
|
|
|
<h2>Submit a new OAuth2 App</h2>
|
2024-04-26 21:12:56 +01:00
|
|
|
<p id="status"></p>
|
2024-05-06 12:22:13 +01:00
|
|
|
<p>App Name:</p>
|
2024-04-26 21:12:56 +01:00
|
|
|
<input id="appidbox">
|
|
|
|
<p>Redirect URI:</p>
|
|
|
|
<input id="rdiruribox">
|
|
|
|
<br>
|
|
|
|
<button style="margin-top: 10px;" onclick="attempt()">Submit</button>
|
|
|
|
</div>
|
2024-05-18 00:41:45 +01:00
|
|
|
<div class="oauthlist" id="oauthlist" style="margin-bottom: 30px;">
|
2024-05-06 12:53:04 +01:00
|
|
|
<h2>Your existing apps</h2>
|
2024-04-26 21:12:56 +01:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|