File size: 487 Bytes
43b5a1a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
    <title>API Request Page</title>
</head>
<body>
    <h1>Send API Request</h1>
    <form action="/send_request" method="post">
        <label for="api_token">API Token:</label>
        <input type="text" id="api_token" name="api_token" required><br><br>
        <label for="group_id">Group ID:</label>
        <input type="text" id="group_id" name="group_id" required><br><br>
        <input type="submit" value="Send Request">
    </form>
</body>
</html>