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>
You may have some CSS rules with the selector
input[type=text]. If this is the case, addinput[type=password]as well to those.