this is my login widget. as you can see the username and password fields have different textboxes. i want them to only have the textbox which the "username" field has. problem is that the only thing that differs them is the input type. and i want the password field to not show the password. which the username field will.
so how do i solve this?
the code is this:
<div id="sidebar">
<div class="widget">
<h3 class="widgettitle">Honestreviews.se</h3>
<div class="textwidget">
<form action="../login-exec.php" method="post">
<ul id="login">
<li>
Username:<br>
<input name="login" type="text" id="login" />
</li>
<li>
Password:<br>
<input name="password" type="password" id="password" />
</li>
<li>
<input type="submit" value="Log in">
</li>
<li>
<a href="register.php">Register</a>
</li>
</div>
</div>
<div class="widget_divide"></div>
