52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
<%@Language="VBSCRIPT"%>
|
|
<%on error resume next%>
|
|
<html>
|
|
<title>IIS - Authentication Manager</title>
|
|
|
|
<FONT COLOR=FFFFFF>
|
|
<STYLE>
|
|
A {text-decoration: none}
|
|
</STYLE>
|
|
</FONT>
|
|
|
|
<BODY BGCOLOR=#FFFFFF LINK=000000 VLINK=000000>
|
|
|
|
<!-- Windows NT Server with IIS -->
|
|
<%if Instr(1,Request.ServerVariables("SERVER_SOFTWARE"), "IIS") > 0 then%>
|
|
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
|
|
<TR VALIGN=CENTER>
|
|
<TD></TD>
|
|
<TD WIDTH=20> </TD>
|
|
<TD><FONT SIZE=+3 COLOR=#000000><B>Internet Service Manager<BR> <FONT SIZE=-1>for Internet Information Server 5.0<FONT></B></FONT></TD>
|
|
</TR>
|
|
</Table>
|
|
<%end if%>
|
|
|
|
<!-- Windows NT Workstation with PWS -->
|
|
<%if Instr(1,Request.ServerVariables("SERVER_SOFTWARE"), "PWS") then%>
|
|
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
|
|
<TR VALIGN=CENTER>
|
|
<TD></TD>
|
|
<TD WIDTH=20> </TD>
|
|
<TD><FONT SIZE=+3 COLOR=#000000><B>Internet Service Manager<BR> <FONT SIZE=-1>for Peer Web Services<FONT></B></FONT></TD>
|
|
</TR>
|
|
</Table>
|
|
<%end if%>
|
|
|
|
<p>
|
|
|
|
Your password will expire soon.<p>
|
|
|
|
<form method="POST" action="/iisadmpwd/aexp4.asp?<%=Request.QueryString%>">
|
|
|
|
Do you want to change it now ?<p><p>
|
|
|
|
<input type="hidden" name="acct" value="<%=Request.ServerVariables("REMOTE_USER")%>">
|
|
<input type="submit" value=" OK ">
|
|
<input type="submit" name="cancel" value=" Cancel ">
|
|
|
|
</form>
|
|
<br>
|
|
|
|
</body></html>
|