The Password textbox is looks wrong

46 Views Asked by At

I'm creating the form in a medal for user registration but the password area has no frame. The page looks like this.

And the code:

<div class="form-group"> 
    <label for="_password">Şifre:</label>
    <p style="font-size:13px;">*Şifreniz en az 1 büyük/küçük harf, sayı ve özel karakterler içermelidir!</p>
    <input type="password" class="form-control" id="_password" placeholder="Şifrenizi dikkatlice giriniz" required>
    <input type="password" class="form-control" id="_repassword" placeholder="Şifrenizi tekrar giriniz" required> 
</div>
1

There are 1 best solutions below

6
Anish Goyal On

You may have some CSS rules with the selector input[type=text]. If this is the case, add input[type=password] as well to those.