vForums Support > Programming & Coding :: Code Requests & Support :: > [F] enter sign page code

[F] enter sign page code - Posted By Nick (nickb) on 19th Apr 08 at 3:19pm
http://fma.vforums.co.uk

I need help with this code, this code is originally from PB.

Code:
 
  1. <script type="text/javascript">
  2. <!--
  3. var iImg = 'http://i185.photobucket.com/albums/x20/magedesigns/entersign.jpg';
  4.  
  5. if(!location.href.match("action") && !document.referrer.match(location.href.split(".")[0]))
  6. {
  7. document.write('<style type="text/css">table,font,.hide{display:none;}.nohide{display: ;}</style>');
  8. d = document.createElement('div');
  9. with(d){ align = 'center'; appendChild(document.createElement('a')); }
  10. with(d.lastChild){ href = '/index.cgi?'; appendChild(document.createElement('img')); }
  11. with(d.lastChild.lastChild){ alt = 'Click to Enter'; border = '0'; src = iImg; }
  12. document.body.appendChild(d);
  13. }
  14. // -->
  15. </script>
 


Now since it was from PB my forum shows http://fma.vforums.co.uk/index.cgi? and it wont allow me to go to the forum.

I want it to look like this:

http://fma2.proboards3.com

Thanks,
Darkmage

Re: enter sign page code - Posted By Marc (cr0w) on 19th Apr 08 at 3:50pm
Code:
 
  1. <script type="text/javascript">
  2. <!--
  3. var iImg = 'http://i185.photobucket.com/albums/x20/magedesigns/entersign.jpg';
  4.  
  5. if(!location.href.match("action") && !document.referrer.match(location.href.split(".")[0]))
  6. {
  7. document.write('<style type="text/css">table,font,.hide{display:none;}.nohide{display: ;}</style>');
  8. d = document.createElement('div');
  9. with(d){ align = 'center'; appendChild(document.createElement('a')); }
  10. with(d.lastChild){ href = '/action/home/'; appendChild(document.createElement('img')); }
  11. with(d.lastChild.lastChild){ alt = 'Click to Enter'; border = '0'; src = iImg; }
  12. document.body.appendChild(d);
  13. }
  14. // -->
  15. </script>
 


{Smile}

Re: enter sign page code - Posted By Nick (nickb) on 19th Apr 08 at 3:54pm
Thanks it works. And is there a way to add this code into the index?

Re: enter sign page code - Posted By Marc (cr0w) on 19th Apr 08 at 3:59pm
 
Thanks it works. And is there a way to add this code into the index?


I'll get a more advanced splash page code added soon. {Smile}

Re: enter sign page code - Posted By Nick (nickb) on 19th Apr 08 at 4:01pm
Ok Cool thanks ^_^