This repository has been archived on 2024-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
hectabit-oauth2/templates/dashboard.html

23 lines
656 B
HTML
Raw Permalink Normal View History

2024-04-02 18:31:06 +01:00
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/css/dashboard.css" media="">
<script src="/static/js/dashboard.js"></script>
</head>
<body>
<div class="newoauth">
<h>Submit a new OAuth2 App</h>
<p id="status"></p>
<p>AppID:</p>
<input id="appidbox">
2024-04-18 16:43:32 +01:00
<p>Redirect URI:</p>
<input id="rdiruribox">
2024-04-18 16:45:36 +01:00
<br>
<button style="margin-top: 10px;" onclick="attempt()">Submit</button>
2024-04-02 18:31:06 +01:00
</div>
<div class="oauthlist" id="oauthlist">
<h>Your existing apps</h>
</div>
</body>
</html>