custom page for entering site password

For general discussion of the Poker Mavens software
Post Reply
Mr.Victor
Posts: 88
Joined: Tue Dec 22, 2009 8:27 am

custom page for entering site password

Post by Mr.Victor »

Can we create a custom page where players have to enter the site password? I'd like to add our logo and spice it up just a bit.
Kent Briggs
Site Admin
Posts: 5878
Joined: Wed Mar 19, 2008 8:47 pm

Re: custom page for entering site password

Post by Kent Briggs »

Mr.Victor wrote:Can we create a custom page where players have to enter the site password? I'd like to add our logo and spice it up just a bit.
If you link from your own web site, just include a SitePassword parameter in the URL and the built-in password prompt will be bypassed.
Mr.Victor
Posts: 88
Joined: Tue Dec 22, 2009 8:27 am

Re: custom page for entering site password

Post by Mr.Victor »

Only problem is I want the password there even from my own site. It's not a huge deal. Just wanted to make the page a lil nicer that's all.
Kent Briggs
Site Admin
Posts: 5878
Joined: Wed Mar 19, 2008 8:47 pm

Re: custom page for entering site password

Post by Kent Briggs »

Mr.Victor wrote:Only problem is I want the password there even from my own site. It's not a huge deal. Just wanted to make the page a lil nicer that's all.
Just make a form that prompts the user for it. Something like:

Code: Select all

<form action="http://123.123.123.123:8087" method="post">
  <h3>Welcome to My Poker Site</h3>
  <p>This is a private server. Enter the site password to continue.</p>
  Site password:<br>
  <input type="text" size="30" name="SitePassword"> 
  <input type="submit" value="Send">
</form>
The method can be "post" or "get". Pretty that up all you want. :)
Mr.Victor
Posts: 88
Joined: Tue Dec 22, 2009 8:27 am

Re: custom page for entering site password

Post by Mr.Victor »

Just what I needed. Thanks.
Post Reply