Spaces:
Runtime error
Runtime error
File size: 618 Bytes
f649fed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html>
<html>
<head>
<title>Upload File to Hugging Face</title>
</head>
<body>
<h1>Upload File to Hugging Face</h1>
<form method="post" enctype="multipart/form-data">
<label for="file">File:</label>
<input type="file" id="file" name="file" required>
<br>
<label for="repo_id">Repository ID:</label>
<input type="text" id="repo_id" name="repo_id" required>
<br>
<label for="revision">Revision:</label>
<input type="text" id="revision" name="revision" required>
<br>
<input type="submit" value="Upload">
</form>
</body>
</html> |