how can i encrypt this password protection for blogger page ? or add a function maybe ...so it wont be so obvious in the code.
and is there anyway that i could add some css design to it ? or make it to popup in the center of the screen.
<!-- paste this password form in your blogger post/page -->
<script language="JavaScript">
var password = ' '
password=prompt('This is password protected page, please enter password to continue.','');
if (password != 'password') {
location.href='https://errorpage.blogspot.com/404';
}
</script>
<!-- end password -->
ps : im new with JavaScript , still learning...
Image : https://i.stack.imgur.com/8mFpN.png
this is how the form looks like , but anyone could just access the code ( Ctrl + U ) and see the password ...
You can Hide whole page via css and then use js to show it. Enter below code before /head and see magic