Well done! Glad you got it working
Care to expand a little on "other issues"? In particular, did you use the word
"lockpage" anywhere else in the resulting code?
Also, did you end up placing just one call to the locker in the body? Or did
you still need "some" code in the header?
========================================================
I've been getting some pms about how to make this work with cp4c0nv3rt
Script so i will answer here.
So first of all open lock.js with note pad and set this -
locking_trigger = 'LOCKONCLICK';
This will allow it to wait until you click something before the locker activates.
Now back to the page html, OP's code only specifies calling the locker once
in the body but for cp4c0nv3rt you have to call lock.js twice.
Once just before </head> and the second time in the body as per OP's code.
This next one bugged me the most. Search for and replace the original href="javascript:void(0)
Instead use this - href="javascript:lockPage() - you only do this once.
Also in the second call to lock.js you don't need to put in guid - ?guid=123456789.
I left it as is but i removed it as well and
it didn't seem to affect the outcome.
======== Other Tips ========
I mentioned this earlier but delete cookies while
testing your locked pages because if you have already unlocked the page
the locker may not come up until the cookie duration time has expired.
Also watch out for syntax errors. So while using notepad for editing
I would advice not to wrap the text so that it doesnt break up the
code or something.
cheers