diff options
Diffstat (limited to 'app/php/components/HeaderMenu.tpl')
-rw-r--r-- | app/php/components/HeaderMenu.tpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/php/components/HeaderMenu.tpl b/app/php/components/HeaderMenu.tpl new file mode 100644 index 0000000..eceea1b --- /dev/null +++ b/app/php/components/HeaderMenu.tpl @@ -0,0 +1,14 @@ +<nav role="navigation"> + <com:THyperLink Text="Login"> + <prop:NavigateUrl><%= $this->Service->constructUrl('Login') %></prop:NavigateUrl> + <prop:Visible><%= $this->User->IsGuest %></prop:Visible> + </com:THyperLink> + <com:TActiveLinkButton OnCommand="logoutUser"> + <prop:Text>Logout (<%= $this->User->Name %>)</prop:Text> + <prop:Visible><%= !$this->User->IsGuest %></prop:Visible> + </com:TActiveLinkButton> + <com:THyperLink Text="New user"> + <prop:NavigateUrl><%= $this->Service->constructUrl('Signup') %></prop:NavigateUrl> + <prop:Visible><%= $this->User->getIsAdmin() %></prop:Visible> + </com:THyperLink> +</nav> |