| View previous topic :: View next topic |
| Author |
Message |
ForgottenMemorie
Joined: 17 Nov 2008 Posts: 16
|
Posted: Nov 19, 2008 5:41 pm Post subject: Log In - Question |
|
|
I bought XFileSharing Pro.. Yay!
Question: I want my premium customers to be able to login like : http://www.shareator.com/
| Code: | | What code will i need to add to the index.html ? |
|
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2109 Location: UFO Lab
|
Posted: Nov 20, 2008 6:43 am Post subject: |
|
|
In main.html, after menu code add:
| Code: | <a href="<TMPL_VAR site_url>/?op=registration"><b>signup</b></a>
<a href="<TMPL_VAR site_url>/?op=forgot_pass">forgot pass</a>
<form method="POST" action="<TMPL_VAR site_url>/" name="FL">
<input type="hidden" name="op" value="login">
Login:<input type="text" name="login" value="<TMPL_VAR login_cooked>" class="myForm" size=12>
Password:<input type="password" name="password" class="myForm" size=12>
<input type="image" src="<TMPL_VAR site_url>/images/login.gif" style="margin-bottom:-5px;">
</form> |
|
|
| Back to top |
|
 |
|