Spaces:
Runtime error
Runtime error
File size: 1,578 Bytes
2643334 58ae063 b200338 58ae063 2643334 58ae063 b200338 58ae063 b200338 58ae063 c433511 84f514d 59cd560 84f514d c433511 59cd560 2fc767f c433511 58ae063 b200338 58ae063 5ecbfe5 58ae063 2643334 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HuggingFace API Demo</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div id="app">
<h1>HuggingFace API Demo</h1>
<div class="auth-container">
<div id="token-form" class="token-form">
<input type="password" id="token-input" placeholder="Enter your HuggingFace API token"
class="repo-input">
<button id="token-submit" class="auth-button">Submit Token</button>
</div>
<button id="signout" style="display: none;" class="auth-button">Sign out</button>
</div>
<div id="repo-form" style="display: none;" class="repo-form">
<select id="org-select" class="repo-input">
<option value="">Own account</option>
</select>
<input type="text" id="repo-name" placeholder="Enter repository name" class="repo-input">
<div id="resource-group-container" style="display: none; width: 100%;">
<input type="text" id="resource-group-name" placeholder="Enter resource group name" class="repo-input">
</div>
<button id="create-repo" class="repo-button">Create Repository</button>
</div>
<div id="content">
<h2>User Info</h2>
<pre class="oauth-result"></pre>
</div>
</div>
<script type="module" src="dist/main.js"></script>
</body>
</html> |