What does this do, I just wondering cause I seen it in a Style file.
PHP Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[activate_your_account]</title>
$headinclude
</head>
<body>
$header
$navbar
<form action="register.php" method="post">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[activate_your_account]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<fieldset class="fieldset">
<legend>$vbphrase[activate_your_account]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
$vbphrase[username]:<br />
<input type="text" class="bginput" size="50" name="username" value="$bbuserinfo[username]" />
</td>
</tr>
<tr>
<td>
$vbphrase[activation_code]:<br />
<input type="text" class="bginput" size="50" name="activateid" />
</td>
</tr>
</table>
</fieldset>
<div class="fieldset" style="margin:$stylevar[formspacer]px 0px 0px 0px">
<phrase 1="register.php?$session[sessionurl]do=requestemail">$vbphrase[you_lost_activation_code_or_username]</phrase>
</div>
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="activate" />
<input type="submit" class="button" value="$vbphrase[activate_your_account]" accesskey="s" />
<input type="reset" class="button" name="reset" value="$vbphrase[reset_fields]" accesskey="r" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>
This I think is to get a lost password?
PHP Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[email_activation_codes]</title>
$headinclude
</head>
<body>
$header
$navbar
<form action="register.php" method="post">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">$vbphrase[email_activation_codes]</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="width:$stylevar[formwidth]" align="$stylevar[left]">
<fieldset class="fieldset">
<legend>$vbphrase[email_activation_codes]</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>$vbphrase[request_activation_code_sent_email]</td>
</tr>
<tr>
<td>
$vbphrase[email_address]:<br />
<input type="text" class="bginput" name="email" value="$email" size="50" maxlength="90" />
</td>
</tr>
</table>
</fieldset>
</div>
</div>
<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="emailcode" />
<input type="hidden" name="url" value="$url" />
<input type="submit" class="button" value="$vbphrase[email_activation_codes]" accesskey="s" />
<input type="reset" class="button" name="reset" value="$vbphrase[reset_fields]" accesskey="r" />
</div>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>