Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Product Manager

Luso

Job info

Job description

We're looking for a Product Manager who is responsible for product planning, delivery and marketing throughout the product lifecycle.


You'll develop a vision and roadmap for the product based on input from internal stakeholders, customers, market research and their own industry insight.


Responsibilities


  • Defines the product vision, strategy and roadmap.
  • Gathers, manages, and prioritizes market/customer requirements.
  • Acts as the customer advocate articulating the user's and/or buyer's needs.

Apply for this job

This is a success message.
This is an error message.
This is also an error message.
function askForEmailAndSubmit() { const emailField = document.getElementById("emailInput"); const submitButton = document.getElementById("submitButton"); recognition.start(); // Start voice input recognition.onresult = (event) => { const spokenText = event.results[0][0].transcript; // Capture spoken email emailField.value = spokenText; // Populate email field // Optional: Automatically submit the form if (submitButton) { submitButton.click(); } }; recognition.onerror = (event) => { alert("Error capturing email: " + event.error); }; }