phpbb remot login?

Status
Not open for further replies.

Matt

New Member
Messages
1,862
Reaction score
0
Points
0
is there a way to have a phpbb lohin box embedden in a web site? how can i do that?
 

Richard

Active Member
Messages
2,028
Reaction score
0
Points
36
Yea its quite easy. Here is how you do it:
HTML:
<form method="post" action="/{path_to_your_forum}/login.php">
Username:<input class="post" type="text" name="username" size="10" /><br />
Password:<input class="post" type="password" name="password" size="10" maxlength="32" /><br />
Log me on automatically each visit<input class="text" type="checkbox" name="autologin" /><br />
<input type="submit" class="mainoption" name="login" value="Log in" />
</form>
You just have to change {path_to_your_forum} to the location of login.php
 

moose

New Member
Messages
1,056
Reaction score
0
Points
0
Do you perhaps have one for a vBulliten Forum? That would also be very helpful :D
 

Richard

Active Member
Messages
2,028
Reaction score
0
Points
36
Its quite easy to get the form for any forum. All you need to do is:

1. Browse to a forum login page (make sure you are not loged in).
2. Go to view source in your browser.
3. Find the code for the form and copy it.
4. Add that code to your page.

That all there is to it.
 
Status
Not open for further replies.
Top