blob: 54c2f013622a74a8b17a8ddd08442a095c2accb0 (
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
25
26
27
28
29
30
31
32
33
34
|
<%@ 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>
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 authentication 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>
|