Sign up or log in to get your own page.
When you create a new account, you will be given the option to create your own user page. By default, this is not linked anywhere (though anyone may access it or edit it by URL directly), so you can use it as a sort of scratchpad. If you would like to invite others to view your page, you can link it here.
The header is included on all user pages. Your actual page begins below the line.
Users
For Advanced Users
If you want to hide a part of your page so that only you can see it, you can do so with the following code:
(:if name Users.{$Author}:)
Hidden text goes in here.
(:ifend:)
However, please note that this hidden text is not secure. There is a very easy way for people to view it (though we aren't going to help snoops by saying how).
If you want to hide your entire page, just put the first statement at the very top, and the ifend at the bottom. Basically, anything in between those two blocks will only show up if you're logged in and viewing your own page.
Technical Explanation: The 'if' statement checks to see if the page name is Users.{$Author}. Since {$Author} is a substitution for the name of the person currently logged in, the if statement is only true if your login name matches the name of the page you are currently on, ie. that you're on Users.. So when I'm viewing your page, it checks to see if your page is named Users.Paradigm. Since it isn't, the if statement is false and nothing between the if and ifend is shown to me.