I have a problem checking HTML5 on Opera and Safari.
In Opera, the message bubble does not display text, and in safari, the check does not happen when I press the submit button. In IE, Mozilla or Chrome, validation works very well. Can anyone say why this is happening?
The inputs that I have in my forms have a standard html5 check with the required attribute and what it is.
I tried to find this topic on the Internet, but could not find it.
Please help me.
thanks
<form class="sign-in-form" action="" method="post"> <li> <label> <span>Username</span> <input placeholder="Please enter your username" name="username" type="text" tabindex="1" title="It must contain the username that you have chosen at registration" required autofocus> </label> </li> <li> <label> <span>Password</span> <input placeholder="Please enter your password" name="password" type="password" tabindex="2" title="It must contain the password that you have chosen at registration" required> </label> </li> <li> <button name="sign-in-btn" type="submit" id="sign-in-submit">Sign In</button> </li> </form>
Marius popa
source share