Hi there

Okay so first off I am very new to Drupal. So bare with me when I try to explain this. I am using the danland theme I have styled it to my liking for my particular site. I think some how along the way I have disabled certain things or might have overridden certain items that I did not intend to.

Okay so first off in my login/register on the homepage I would like the user to click on the link and then the page to have tabs on it where it is defaulted to login but can switch over to the tab register account and/pr request new password shown in your danland theme template page.

Also when I click on the user profile the information shows up but somehow I have removed the edit profile link/tab how can I repair that and make it show up so users can click on that link/tab and have access to edit their profile. I have created in the permissions that all authenticated users can change their user names etc.

Any and all help would be greatly appreciated
Thank you in advance!
Dani

Comments

danpros’s picture

Status: Active » Closed (fixed)

Hi,

Ups do not noticed this thread :)

The right code for login register

		<div id="authorize">
      		      <ul><?php global $user; if ($user->uid != 0) { print '<li class="first">' .t('Logged in as '). '<a href="' .url('user/'.$user->uid). '">' .$user->name. '</a></li>'; print '<li><a href="' .url('user/logout'). '">' .t('Logout'). '</a></li>'; } else { print '<li class="first"><a href="' .url('user'). '">' .t('Login'). '</a></li>'; print '<li><a href="' .url('user/register'). '">' .t('Register'). '</a></li>'; } ?></ul>
		</div> 

I think you already fixed it by yourself so I will close this one.

Dan