1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-03 10:17:17 +00:00
Sonarr/NzbDrone.Web/Views/Shared/LogOnUserControl.ascx

15 lines
338 B
Text
Raw Normal View History

2010-09-23 03:19:47 +00: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") %> ]
<%
}
%>