forms1.html

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Praktische Informatik 1</title>
  </head>
  <body style="background-color:#d2ffc8">
    <h1>Einfaches Formular</h1>
 
    <p>Willkommen zum Online-Kurs. Bitte melden Sie sich an:</p>
    
    <form method="post" action="http://www.peter-junglas.de/fh/vorlesungen/praktinfMB1/html/echo.php">
      <p>
	Benutzer: <input name="user" size="20" value="blabla"><br>
	Passwort: <input type="password" name="passwort" size="20"><br>
	<button>Anmelden</button> 
	<button type="reset">Zurücksetzen</button>
      </p>
    </form>
    
  </body>
</html>