Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Page Language="C#" AutoEventWireup="true" Inherits="MyApp.Server.Web.TestSts._Default" ValidateRequest="false" Codebehind="Default.aspx.cs" %>
- <%@ OutputCache Location="None" %>
- <!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>Login to the security token service (STS)</title>
- <style type="text/css">
- .style1 { width: 100%; }
- .style2 { width: 125px; }
- .style3 {
- font-size: large;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="style3">
- Windows Identity Foundation - ASP.NET Security Token Service Web Site</div>
- <p class="style3">
- </p>
- <asp:Label ID="Label3" runat="server" style="font-weight: 700"
- Text="Login to the STS"></asp:Label>
- <br />
- <table class="style1">
- <tr>
- <td class="style2">
- <asp:Label ID="Label1" runat="server" Text="User name"></asp:Label>
- </td>
- <td>
- <asp:TextBox ID="txtUserName" runat="server"></asp:TextBox>
- </td>
- </tr>
- </table>
- <p>
- <asp:CheckBox ID="chkIsAdmin" runat="server" Text="Is Administrator" />
- </p>
- <p>
- Additional roles (add a role name per line):</p>
- <p>
- <asp:TextBox ID="txtRoles" runat="server" Height="172px" TextMode="MultiLine" Width="258px"></asp:TextBox>
- </p>
- <p>
- <asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" Text="Submit" />
- </p>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement