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>
|
2024-04-29 01:45:22 +01:00
|
|
|
<title>Dashboard</title>
|
2024-04-26 21:12:56 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-05-06 12:53:04 +01:00
|
|
|
<p class="credit">Image by perga (@pergagreen on discord)</p>
|
|
|
|
<img src="/static/img/background.jpg" 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>
|