1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-13 15:28:45 +00:00
Lidarr/NzbDrone.Web/Views/Shared/LogOnUserControl.ascx

15 lines
338 B
Text
Raw Normal View History

2010-09-22 20:19:47 -07:00
<%@ 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") %> ]
<%
}
%>