Maybe this is good upgrade for next relese of portal.
You can download mod in page:
http://svmods.com/facebook-connect-for-phpbb.html
Or search in http://www.phpbb.com site, where you can find others social connections plug-in.
After installation and test it is good to rewrite code for portal log in : login_box.html
For portal version 1.0.5, and 1.0.6, prosilver style, please exchange existing code in login_box.html with
Code: Select all
<!--version $Id: login_box.html 602 2010-10-17 8:00:08Z marc1706 & Igor Trcek $ //-->
<form action="{S_LOGIN_ACTION}" method="post">
<div>
{$LR_BLOCK_H_L}<a href="{U_LOGIN_LOGOUT}"><!-- IF $S_BLOCK_ICON --><img src="{T_THEME_PATH}/images/portal/portal_login.png" width="16" height="16" alt="" /> <!-- ENDIF -->{L_LOGIN_LOGOUT}</a>{$LR_BLOCK_H_R}
<dl>
<dt></dt>
<dd>{SVMODS_FACEBOOK_LOGIN_BUTTON}</dd>
</dl>
<br />
<span class="genmed">{L_USERNAME}:</span><br />
<input type="text" tabindex="1" name="username" id="username" size="25" value="" class="inputbox autowidth" /><br /><br />
<span class="genmed">{L_PASSWORD}:</span><br />
<input type="password" tabindex="2" id="password" name="password" size="25" class="inputbox autowidth" />
<!-- IF S_DISPLAY_FULL_LOGIN -->
<br /><br />
<!-- IF S_AUTOLOGIN_ENABLED -->
<input name="autologin" type="checkbox" class="radio" tabindex="3" checked="checked" /> <span class="gensmall">{L_UM_LOG_ME_IN}</span><br />
<!-- ENDIF -->
<!-- ENDIF -->
<br />
<input type="hidden" name="redirect" value="{U_PORTAL}" />
<input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" />
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
</div>
</form>