summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderMvc/Views/Shared/LogOnUserControl.ascx
blob: 0e7120e62adb02f3cb910ed0834e45b0d5223b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%
    if (Request.IsAuthenticated) {
%>
        Welcome <b><%= Html.Encode(Page.User.Identity.Name) %></b>!
        [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ]
<%
    }
    else {
%> 
        [ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ]
<%
    }
%>