12-07-2010, 02:57 AM
This is a simple tutorial on how to make a password field on a website so that when you type your password it shows on the screen as **** and not your actual password.
[code=html]
<html>
<body>
<form action="">
Username: <input type="text" name="username" /><br />
Password: <input type="password" name="password" />
</form>
</body>
</html>
[/code]
[code=html]
<html>
<body>
<form action="">
Username: <input type="text" name="username" /><br />
Password: <input type="password" name="password" />
</form>
</body>
</html>
[/code]