1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-22 15:19:10 +00:00
Sonarr/NzbDrone.Web/Views/Shared/LogOnUserControl.ascx
2010-09-22 20:19:47 -07:00

14 lines
338 B
Text

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%
if (Request.IsAuthenticated) {
%>
Welcome <b><%: Page.User.Identity.Name %></b>!
[ <%: Html.ActionLink("Log Off", "LogOff", "Account") %> ]
<%
}
else {
%>
[ <%: Html.ActionLink("Log On", "LogOn", "Account") %> ]
<%
}
%>