Ich habe hier nen fertigen code zum password überprüfen:
</body>
</html>
hierbei wird username und pass abgefragt dann wird nach einem dokument das "username"+"password".htm heißt das sich im gleichen ordner befindet.
Kann ich das irgendwie so machen das in einem angegeben ordner und unterordnern gesucht wird?
z.B. "C:\Projekte\Html\" und folgende?
<html>
<head>
<!-- style-angaben für das Login -->
<style type="text/css">
<!--
body,td,a{font-family:verdana,arial,helvetica;font-size:12px;font-weight:normal;text-decoration:none;color: #000000;}
input{
border-top-width:1px;border-left-width:1px;border-bottom-width:1px;border-right-width:1px;
background: #DFDFDF;
font:10px Arial, Helvetica;
color: #000000;
width:65px;
}
.button{
cursor:hand;
border-top-width:1px;border-left-width:1px;border-bottom-width:1px;border-right-width:1px;
background: #DFDFDF;
font:10px Arial, Helvetica;
color: #000000;
width:65px;
}
.11pixel{
font-family:arial,helvetica;font-size:11px;font-weight:normal;text-decoration:none;color: #000000;
}
-->
</style>
<!-- script im head -->
<script type="text/javascript" language="JavaScript">
<!-- Begin
function Login(){
var done=0;
// Prüfung ob leer
if (username=document.login.username.value == "") {
alert ("\nUser eingeben")
return false;
}
if (password=document.login.password.value == "") {
alert ("\nPasswort eingeben")
return false;
}
var username=document.login.username.value;
username=username.toLowerCase();
var password=document.login.password.value;
password=password.toLowerCase();
// gastlogin
if (username=="gast" && password=="xyz")
{
// feste Zieldatei
window.location="gastseite.htm";
done=1;
}
else
{
// andere logins
zusammengesetzt = username + "-" + password;
url= zusammengesetzt;
url += ".htm";
// die Alert-Meldung wird nicht angezeigt wenn die nächste zeile gelöscht wird
alert ("sie werden weitergeleitet zur Datei " + url + " wenn es diese Datei gibt")
this.window.location=url;
return false;
}
if (done==0) { alert("Invalid login!"); }
}
// End -->
</script>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<br>
<form name="login">
<table width="140" border="0" cellspacing="0" cellpadding="1">
<tr><td bgcolor="#BFBFBF" style="font-family: verdana,arial,helvetica; font-size: 12px; font-weight: normal; text-decoration: none; color: #000000">
<table bgcolor="#FFFFFF" cellspacing="0" width="100%" border="0" cellpadding="3">
<tr><td bgcolor="#FFFFFF" class="10pixel">Username:</td>
<td align="right"><input type="text" name="username" size="8"></td>
</tr>
<tr>
<td bgcolor="#FFFFFF" class="10pixel">Passwort:</td>
<td align="right"><input type="Password" name="password" size="8"></td>
</tr>
<tr>
<td class="10pixel"> <br></td>
<td align="right"><input class="button" type="button" name="Sendebutton"
value=" Login " onClick="Login()"></td>
</tr>
<tr><td valign="top" class="10pixel">
</td></tr></table>
</td></tr></table>
</form>
</body>
</html>
hierbei wird username und pass abgefragt dann wird nach einem dokument das "username"+"password".htm heißt das sich im gleichen ordner befindet.
Kann ich das irgendwie so machen das in einem angegeben ordner und unterordnern gesucht wird?
z.B. "C:\Projekte\Html\" und folgende?