summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/decide.aspx
blob: 4a6e2d8b057069c5bc849f964bc1c8218ed68d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Language="C#" AutoEventWireup="true" Inherits="OpenIdProviderWebForms.decide"
	CodeBehind="decide.aspx.cs" MasterPageFile="~/Site.Master" %>

<%@ Register Src="ProfileFields.ascx" TagName="ProfileFields" TagPrefix="uc1" %>
<asp:Content runat="server" ContentPlaceHolderID="Main">
	<p><asp:Label ID="siteRequestLabel" runat="server" Text="A site has asked to authenticate that you own the identifier below." />
		You should only do this if you wish to log in to the site given by the Realm.</p>
	<p>This site <asp:Label ID="relyingPartyVerificationResultLabel" runat="server" Font-Bold="True"
		Text="failed" /> verification. </p>
	<table>
		<tr>
			<td>Identifier: </td>
			<td><asp:Label runat="server" ID='identityUrlLabel' /> </td>
		</tr>
		<tr>
			<td>Realm: </td>
			<td><asp:Label runat="server" ID='realmLabel' /> </td>
		</tr>
	</table>
	<p>Allow this to proceed? </p>
	<uc1:ProfileFields ID="profileFields" runat="server" Visible="false" />
	<asp:Button ID="yes_button" OnClick="Yes_Click" Text="  yes  " runat="Server" />
	<asp:Button ID="no_button" OnClick="No_Click" Text="  no  " runat="Server" />
</asp:Content>