mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01: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") %> ]
|
|
<%
|
|
}
|
|
%>
|