File size: 794 Bytes
995d55d
 
 
 
3ebf773
995d55d
 
 
3ebf773
 
 
 
995d55d
3ebf773
995d55d
3ebf773
 
995d55d
 
e075d72
13eaa7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Upload JSON</title>
</head>
<body>
    <h1>Upload JSON File</h1>
    <form action="/upload_json" method="post" enctype="multipart/form-data">
        <label for="file">Select JSON file:</label>
        <input type="file" id="file" name="file" accept=".json" required><br><br>
        <label for="verify_phone">Verify Phone Number:</label>
        <input type="checkbox" id="verify_phone" name="verify_phone" value="1"><br><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">
    </form>
</body>
</html>