Pretty password makes your password boxes prettier by allowing you to add a text hint, which is something you can't do with a standard password input. Download Here
$(function(){
$("#passwordControl").prettyPassword();
});
$(function(){
$("#passwordControl").prettyPassword({
email: '#Email',
password: '#Password',
passwordLabel: '#PasswordLabel',
emailText: 'Enter Email',
passwordText: 'Enter Password'
});
});