1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
|
html>
<head>
<title>Seitentitel</title>
CSS etc!
</head>
<body>
<form method="POST" action="login.php">
<font size="2" face="Tahoma">Name:</font>
<font size="2" face="Tahoma"><input type="text" name="username" size="20"></font><br><br>
<font size="2" face="Tahoma">Passwort: </font>
<font size="2" face="Tahoma"><input type="password" name="passwort" size="20"></font>
<input type="submit" value="Einloggen" name="B1">
<input type="reset" value="Löschen" name="B2">
</form>
</body>
</html>
|