How to Password Protect a Blogger Page/Post
<SCRIPT LANGUAGE="JavaScript">
var password = 'free'
password=prompt('This is password protected page, please enter password to continue.',");
if (password != 'free') {
location.href='http://www.error_page_url.com';
} </SCRIPT>

Comments