<!DOCTYPE html>
<html>
<head>
    <title>Recipe Finder</title>
</head>
<body>
    <h1>Recipe Finder</h1>
    <form method="POST">
        <label for="ingredients">Enter ingredients (comma-separated):</label>
        <input type="text" name="ingredients" id="ingredients" required>
        <input type="submit" value="Find Recipes">
    </form>
</body>
</html>