Spaces:
Sleeping
Sleeping
Create j_upl_json.html
Browse files- j_upl_json.html +21 -0
j_upl_json.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>Upload JSON</title>
|
| 6 |
+
</head>
|
| 7 |
+
<body>
|
| 8 |
+
<h1>Upload JSON Data</h1>
|
| 9 |
+
<form id="json-upload-form" enctype="multipart/form-data" method="post" action="/j_upload_json">
|
| 10 |
+
<input type="file" name="file" accept=".json">
|
| 11 |
+
<br><br>
|
| 12 |
+
<label for="verify_phone">Verify Phone Number:</label>
|
| 13 |
+
<input type="checkbox" id="verify_phone" name="verify_phone" value="1">
|
| 14 |
+
<br>
|
| 15 |
+
<label for="add_curator">Add Curator:</label>
|
| 16 |
+
<input type="checkbox" id="add_curator" name="add_curator" value="1">
|
| 17 |
+
<br><br>
|
| 18 |
+
<input type="submit" value="Upload JSON">
|
| 19 |
+
</form>
|
| 20 |
+
</body>
|
| 21 |
+
</html>
|