The validation message is usually controlled by changing the "title" attribute of the input element. If that doesn't work, then it may have to be adjusted with javascript like:
oninvalid="this.setCustomValidity('Enter User Name Here')"
oninput="this.setCustomValidity('')"