<!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>