html5 - In a html form in the password field value is not showing as password -


The HTML form I created for my webpage is not showing as a password value. Instead of "password"

This code is ...

  & lt; Form id = "form" & gt; & Lt; Div class = "success_wrapper" & gt; & Lt; Div class = "success" & gt; Contact form submitted! & Lt; Br> & Lt; Strong> Thanks for registering & lt; / Strong> & Lt; / Div & gt; & Lt; / Div & gt; & Lt; Fieldset & gt; & Lt; Label class = "name" & gt; & Lt; Input type = "text" value = "name:" & gt; & Lt; Br class = "clear"> & Lt; Span class = "error error-empty" & gt; * This is not a valid name. & Lt; / Span & gt; & Lt; Span class = "empty error-empty" & gt; * This field is required. & Lt; / Span & gt; & Lt; / Labels & gt; & Lt; Label class = "email" & gt; & Lt; Input type = "text" value = "e-mail:" & gt; & Lt; Br class = "clear"> & Lt; Span class = "error error-empty" & gt; * This is not a valid email address. & Lt; / Span & gt; & Lt; Span class = "empty error-empty" & gt; * This field is required. & Lt; / Span & gt; & Lt; / Labels & gt; & Lt; Label class = "phone" & gt; & Lt; Input type = "tel" value = "phone:" & gt; & Lt; Br class = "clear"> & Lt; Span class = "error error-empty" & gt; * This is not a valid phone number. & Lt; / Span & gt; & Lt; Span class = "empty error-empty" & gt; * This field is required. & Lt; / Span & gt; & Lt; / Labels & gt; & Lt; Label class = "password" & gt; & Lt; Input type = "password" value = "password:" & gt; & Lt; Br class = "clear"> & Lt; Span class = "empty error-blank" & gt; * This field is required. & Lt; / Span & gt; & Lt; / Labels & gt; & Lt; Div class = "clear" & gt; & Lt; / Div & gt; & Lt; Div class = "btns" & gt; & Lt; A data-type = "submit" class = "btn" & gt; Sign in & lt; / A & gt; & Lt; Div class = "clear" & gt; & Lt; / Div & gt; & Lt; / Div & gt; & Lt; / Fieldset & gt; & Lt; / Form & gt;    

This is working well for me, I paste the code here:

And it works properly Maybe this issue is because you have used "password" vs. "password"?

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -