ExpressionEngine Docs

Member Management

You’ll find many member management options available at:

Note: A member account’s Username and Screen Name can be identical, but the Username must be unique system-wide.

Member Navigation

A good strategy for member navigation links is to use them within conditional tags that let you present links based on whether someone is logged in or not. Here’s an example:

{if logged_in}
  <a href="{path='member/profile'}">Edit your profile</a><br>
  <a href="{path='member/memberlist'}">View the Memberlist</a><br>
  <a href="{path='logout'}">Log Out</a>
{/if}
{if logged_out}
  Are you a member? Please <a href="{path='member/login'}">log-in</a>.<br>
  Not a member? <a href="{path='member/register'}">Register</a>.<br>
  Have you <a href="{path='member/forgot'}">forgotten your password</a>?
{/if}