burgerauth/templates/dashboard.html

27 lines
1.1 KiB
HTML
Raw Normal View History

2024-04-26 21:12:56 +01:00
<!DOCTYPE html>
<html lang="en">
2024-04-26 21:12:56 +01:00
<head>
<link rel="stylesheet" href="/static/css/style.css" media="">
2024-04-26 21:12:56 +01:00
<script src="/static/js/dashboard.js"></script>
<title>Dashboard</title>
2024-04-26 21:12:56 +01:00
</head>
<body>
<p class="credit">Image by perga (@pergagreen on discord)</p>
<img src="/static/img/background.jpg" class="background" alt="">
<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">
<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>
<div class="oauthlist" id="oauthlist" style="margin-bottom: 30px;">
<h2>Your existing apps</h2>
2024-04-26 21:12:56 +01:00
</div>
</body>
</html>