websitepanel/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/SettingsVpsPolicy.ascx
2011-07-13 16:07:32 -07:00

18 lines
No EOL
1 KiB
Text

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="SettingsVpsPolicy.ascx.cs" Inherits="WebsitePanel.Portal.SettingsVpsPolicy" %>
<%@ Register Src="UserControls/PasswordPolicyEditor.ascx" TagName="PasswordPolicyEditor" TagPrefix="wsp" %>
<%@ Register TagPrefix="wsp" TagName="CollapsiblePanel" Src="UserControls/CollapsiblePanel.ascx" %>
<wsp:CollapsiblePanel id="secAdministratorPassword" runat="server"
TargetControlID="AdministratorPasswordPanel" meta:resourcekey="secAdministratorPassword" Text="Administrator Account Password Policy"/>
<asp:Panel ID="AdministratorPasswordPanel" runat="server" Height="0" style="overflow:hidden;">
<table>
<tr>
<td class="SubHead" width="150" nowrap>
<asp:Label ID="lblPasswordPolicy" runat="server" meta:resourcekey="lblPasswordPolicy" Text="Password Policy:"></asp:Label>
</td>
<td>
<wsp:PasswordPolicyEditor id="adminPasswordPolicy" runat="server" />
</td>
</tr>
</table>
</asp:Panel>