<!DOCTYPE html>
<html>
<head>
    <title>Ingreso de Productos</title>
</head>
<body>
    <h2>Formulario Ingreso de Productos</h2>
    <form>
        Producto: <input type="text" name="producto"><br><br>
        Precio: <input type="text" name="precio"><br><br>
        Cantidad: <input type="text" name="cantidad"><br><br>
        <input type="submit" value="Guardar (simulado)">
    </form>
    <br>
    <a href="menu.php">Volver al Menú</a>
</body>
</html>