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