just paste the code [code]<form method="post" action="'.url('member/signup').'" >
<p>
'.label(t('Email Address')).'
<input type="text" size="20" name="email" class="fpost" style="width:180px" />
<br /><span class="sub">('.$invite_msg.t("We won't display your Email Address.").')</span>
</p><p>
'.label(t('Username')).'
<input type="text" size="18" class="fpost" name="username" value="'.$_POST['username'].'" style="width:180px" /><br />
<span class="sub">('.t('4 to 18 characters, made up of 0-9,a-z').')</span>
</p><p>
'.label(t('Full Name')).'
<input type="text" size="20" name="fullname" class="fpost" style="width:180px" />
</p><p>
'.label(t('Come from')).'
<select name="location" class="inputText">';
$locations = explode("\r\n",get_text('locations'));
foreach($locations as $location) {
if ($_GET['location'] == trim($location)) {
$selected = 'selected';
}
else {
$selected = '';
}
echo '<option value="'.$location.'" '.$selected.' >'.$location.'</option>';
}
echo '</select>
</p><p>
<input type="hidden" name="g" value="'.$_REQUEST['g'].'" />
<input type="submit" style="background:#aaf;color:#000;font-size:1.5em;font-weight:bold" value="'.t('Sign up').'" />
</p></form>[/code]in the page.tpl.php if ur usin face book theame just add post insted of get in this code
|