A simple app containing only input fields with types an placeholders where iphone users cannot input neither email nor password.
Let me know what info to provide to solve this problem or please direct me to the appropriate article. I wasn't able to find one that covers the same problem.
everything works fine on android.
import React from "react"
const HomePage = () => {
return (
<div>
<input type="email" placeholder="email" />
<input type="password" placeholder="password" />
</div>
)
}
export default HomePage