mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-01-24 05:42:10 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4045701
9 lines
539 B
Plaintext
9 lines
539 B
Plaintext
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<object>" %>
|
|
<div id="logindisplay">
|
|
<% if (Request.IsAuthenticated) { %>
|
|
<%=_Encoded("Welcome")%> <strong><%=Html.Encode(Page.User.Identity.Name) %></strong>!
|
|
[<%=Html.ActionLink(T("Log Off").ToString(), "LogOff", new { Controller = "Account", Area = "Orchard.Users" })%>]
|
|
<% } else { %>
|
|
[<%=Html.ActionLink(T("Log On").ToString(), "LogOn", new { Controller = "Account", Area = "Orchard.Users", ReturnUrl = Context.Request.RawUrl })%>]
|
|
<% } %>
|
|
</div> |