As you see LoginID is the id of the p tag but you need the input tag to enter your text. The input tag is the first child and then the first sibling in the dom tree from the p tag. Try this:
ie.document.getElementById("LoginID").firstChild.nextSibling.Value = Myid
Look here for further information:
firstChild
nextSibling
Something about the Document Object Model (DOM)