Create grups.html
Browse files- grups.html +16 -0
    	
        grups.html
    ADDED
    
    | @@ -0,0 +1,16 @@ | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            <!DOCTYPE html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
            <head>
         | 
| 4 | 
            +
                <title>API Request Page</title>
         | 
| 5 | 
            +
            </head>
         | 
| 6 | 
            +
            <body>
         | 
| 7 | 
            +
                <h1>Send API Request</h1>
         | 
| 8 | 
            +
                <form action="/send_request" method="post">
         | 
| 9 | 
            +
                    <label for="api_token">API Token:</label>
         | 
| 10 | 
            +
                    <input type="text" id="api_token" name="api_token" required><br><br>
         | 
| 11 | 
            +
                    <label for="group_id">Group ID:</label>
         | 
| 12 | 
            +
                    <input type="text" id="group_id" name="group_id" required><br><br>
         | 
| 13 | 
            +
                    <input type="submit" value="Send Request">
         | 
| 14 | 
            +
                </form>
         | 
| 15 | 
            +
            </body>
         | 
| 16 | 
            +
            </html>
         |