Why Does CCCC Require Passwords?
The primary reason we require passwords for certain pages is to
protect the privacy of those within our church. While we know that the
information is available in our bulletin, we do not want it available for the
whole world to see.We also protect the curriculum pages because we do not want to
allow unauthorized access to the materials we work so hard to produce.
Thanks for your understanding!
<%
End Sub
Sub CheckLogin
If LCase(Request.Form("username")) = "cccc" And LCase(Request.Form("userpwd")) = "jesuslovesme" Then
Session("UserLoggedIn") = "true"
Response.Redirect "bulletin.asp"
Else
Response.Write("Login Failed.
")
ShowLogin
End If
End Sub
%>
|