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