1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
|
<html>
<head>
<title>Mitgliederlogin</title>
<style type="text/css">
<!--
A:link {text-decoration: none; }
A:visited {text-decoration: none; }
A:hover {text-decoration: none; underline; font-weight:bold }
A:active {text-decoration: none; }
//-->
</style>
<SCRIPT LANGUAGE='JAVASCRIPT' TYPE='TEXT/JAVASCRIPT'>
<!--
var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(mypage,myname,settings);
win.focus();}
// -->
</script>
</head>
<body>
<?php
$username = $_POST["username"];
$password = $_POST["passwort"];
if( ($username=="Benutzer" AND $password=="Passwort"))
{
echo "<font style="#000000" face="Verdana" size="1"><a style="#000000" href="javascript:NewWindow('http://vrhponyhofnaeve.vr.funpic.de/Mitglieder/Mitgliederbereich.html','GB','600','500','custom','front');">Mitgliederbereich</a></font>";
}
else
{
echo "Log-In gescheitert!";
}
?>
</body>
</html>
|