Am I missing something here:
I want to create a function called:
I have created this in the
vBExternal.php:
PHP Code:
// ---------------------------------------------------
// FUNCTION: output_Login
// DETAIL: Outputs Login Box
// ---------------------------------------------------
function output_Login(){
global $DB, $Data;
$Template = LoadTemplate("login_form.html");
if ($bbuserinfo['userid'] == 0 || $bbuserinfo['userid'] == -1) {
$Data .= ParseTemplate($Template);
} else {
echo "Welcome Back,<br>".$bbuserinfo['username'];
}
doOutput();
}
and created this template: as
login_form.html
HTML Code:
<fieldset>
<legend>Login :</legend>
<form action="{url}/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
<script type="text/javascript" src="{url}/clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="3" border="0">
<tr>
<td>UN: </td>
<td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';" /></td>
<td colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />Remember Me?</label></td>
</tr>
<tr>
<td>PWD: </td>
<td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td><input type="submit" class="button" value="Log in" tabindex="4" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="vb_login_md5password" />
</form>
</fieldset>
What include or required file am I missing that is preventing this from working properly.
It is not displaying the username or anything. Additionally, I want to add a conditional to one of the functions for an admin sub-function by determining the usergroupid membership and that too does not work.
HELP ZT HEEEELP!!!!