Thanks guys, That file was exactly what I needed.
For anyone else looking to edit this box, All I done was to add two hyper links to the below section of code. It starts from <BR><BR>.
- Code: Select all
- <form action="index.php" method="post" id="login-form">
 <div class="logout-button">
 <?php if ($params->get('greeting')) :  ?>
 <div class="login-greeting">
 <?php if($params->get('name') == 0) : {
 echo JText::sprintf('MOD_LOGIN_HINAME', $user->get('name'));
 } else : {
 echo JText::sprintf('MOD_LOGIN_HINAME', $user->get('username'));
 } endif; ?>
 </div>
 <?php endif; ?>
 <BR><BR>
 <a href="url">:: Reset your password</a> <BR>
 <a href="index.php?option=com_k2&view=item&layout=itemform&task=add&Itemid=113" target="_blank">:: Submit a article</a>
 <BR><BR>
 
 <input type="submit" name="Submit" class="button" value="<?php echo JText::_('JLOGOUT'); ?>" />
 </div>
 <input type="hidden" name="option" value="com_users" />
 <input type="hidden" name="task" value="user.logout" />
 <input type="hidden" name="return" value="<?php echo $return; ?>" />
 <?php echo JHtml::_('form.token'); ?>
 </form>