Gossamer Forum
Home : Products : DBMan : Discussions :

No link in html.pl for user to register.

Quote Reply
No link in html.pl for user to register.
How come I can not find anything in the html.pl file that allows people to register for the database.



Doug T.
Quote Reply
Re: [Doug Thorlakson] No link in html.pl for user to register. In reply to
The sub is called "sub html_signup_form"

You can create a link within the "sub html_login_form" to give people the option of registering by adding something like this to the sub:

|;
if ($auth_signup) { print qq| <CENTER><$font><B>You can sign up for an account by <a href="$db_script_url?db=$db_setup&signup_form=1">Clicking HERE</a>.</B></font></CENTER><P>|;
}

You can also include links to the signup and register functions in your footer:

Signup: <A HREF="$db_script_url?db=$db_setup&signup_form=1">

Login screen: <A HREF="$db_script_url?db=$db_setup">

These and many more tips can be found in the FAQ noted below.

Unoffical DBMan FAQ

http://creativecomputingweb.com/dbman/index.shtml/