Hi, I am searching for a solution where any user of my gallery first has to register/login befor he can enter the page. Everytime! Sort of like the login-page for the admin. Any ideas how to realize it?
I used the following example from another Discussion:
<form action=http://www.mysite.com/4images/login.php method=post>
<input type="text" size="18" name="user_name" class="blackCopy" value="Username" onFocus="if(this.value=='Username')this.value='';">
<br />
Password:<br />
<input type="password" size="18" name="user_password" class="blackCopy" />
<table border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td height="20">
<input type="checkbox" name="auto_login" value="1" /> </td>
<td><span class="smalltext">Log me on automatically next visit?</span></td>
</tr>
</table>
<input type="hidden" name="url" value="http://www.www.mysite.com/4images/index.php">
<input type="submit" value="Log In" class="blackCopy" />
</form>
The Problem is, that there is no registration choice for "first-timers"
Thanks!
Robin