mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
15 lines
338 B
Plaintext
15 lines
338 B
Plaintext
<%@ 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") %> ]
|
|
<%
|
|
}
|
|
%>
|