-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
48 lines (44 loc) · 1.75 KB
/
Default.aspx
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Salesforce Identity Demo</title>
</head>
<body style="text-align: center">
<form id="form2" runat="server">
<div>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
</p>
<p>
<asp:Label ID="Label1" runat="server"
Text="Sample Application to demo SAML based SSO with Salesforce Identity"
style="font-weight: 700; text-align: center; font-family: Arial, Helvetica, sans-serif; font-size: x-large;"></asp:Label>
</p></div>
<p>
<asp:Label ID="Label2" runat="server" Text="Username"
style="font-family: Arial, Helvetica, sans-serif"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</p>
<p>
<asp:Label ID="Label3" runat="server" Text="Password"
style="font-family: Arial, Helvetica, sans-serif"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" type="password" TextMode="Password"></asp:TextBox>
</p>
<p>
<asp:Button ID="Button1" runat="server" Text="Login" onclick="Button1_Click" />
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
Text="Login with Salesforce" Width="231px" />
</p>
</form>
</body>
</html>