ITS Home Tech Support Laptop Program E Learning Media Services Communications
 

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

JavaScript Password Protector:

Insert This Small Piece of code at the very top of your HTML document.

Your password will be set to whatever "yourpassword" is now.

Once the correct password is entered, the rest of the page will be displayed.

 

<script language="javascript">

var wrong="http://course1.winona.edu/noaccess.htm";

var password="yourpassword";

var name = prompt("Password","Please Enter Authorization");

if (name != password) {location.href=wrong}

</script>