Pretty Password

By Martin Beeby

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

Version 1

It's magic like a Jquery Paul Daniels... but not alot.

You can load with just the defaults

$(function(){
	$("#passwordControl").prettyPassword();
});
			

Or maybe be a little fancy and load in your own options

$(function(){
	$("#passwordControl").prettyPassword({
	email: '#Email',
	password: '#Password',
	passwordLabel: '#PasswordLabel',
	emailText: 'Enter Email',
	passwordText: 'Enter Password'
	});
});