Then create a new Custom Sidebar Block with the following data:
Name: Sign In
Enabled : Yes
Hide From Main Custom Block: Depends on where you want it
Full Image Name: key.png (or whatever you wish as long as it is in the proper directory and use reference it)
Enable RAW HTML/JS mode: No
Enable PHP Mode: Yes
Use Table/Border/Title/Image?: Yes
Remove Ability for User to Collapse Block? Up to you
$loginBox = "";
$loginBox .= "<form id='login' method='post' action='{$this->settings['base_url']}app=core&module=global&section=login&do=process'>
<input type='hidden' value='{$this->member->form_hash}' name='auth_key'>
<div class='ipsForm'>
<fieldset>
<ul>
<li class='ipsField ipsField_primary'>
<label class='ipsField_title' for='ips_username'>User name</label>
<div class='ipsField_content'>
<input type='text' size='10' name='ips_username' class='input_text' id='ips_username'>
</div>
</li>
<li class='ipsField ipsField_primary'>
<label class='ipsField_title' for='ips_password'>Password</label>
<div class='ipsField_content'>
<input type='password' size='10' name='ips_password' class='input_text' id='ips_password'><br />
<a title='Retrieve password' href='{$this->settings['base_url']}app=core&module=global&section=lostpass'>I've forgotten my password</a>
</div>
</li>
<li class='ipsField ipsField_checkbox'>
<input type='checkbox' class='input_check' value='1' name='rememberMe' checked='checked' id='inline_remember'>
<div class='ipsField_content'>
<label for='inline_remember'>
<strong>Remember me</strong>
<span class='desc lighter'>This is not recommended for shared computers</span>
</label>
</div>
</li>
<li class='ipsField ipsField_checkbox'>
<input type='checkbox' class='input_check' value='1' name='anonymous' id='inline_invisible'>
<div class='ipsField_content'>
<label for='inline_invisible'>
<strong>Sign in anonymously</strong>
<span class='desc lighter'>Don't add me to the active users list</span>
</label>
</div>
</li>
</ul>
</fieldset>
<div class='ipsForm_submit ipsForm_center'>
<input type='submit' value='Sign In' class='ipsButton'>
</div>
</div>
</form>";
return $loginBox;












