wie gesagt bis jetzt ur html da wir uns mit python net so auskennen und uns das internet nicht wirklich geholfen hat bis jetzt
<!DOCTYPE html>
<html>
<head>
<title>Quartett</title>
</head>
<body>
<p>Herzlich Willkommen</p>
<p>Bitte registrieren sie sich</p>
<h1>Registrieren</h1>
<form action="input_text.htm">
<p>username:<br><input name="username" type="text" size="30" maxlength="30"></p></form>
<form action="input_password.htm">
<p>Kennwort:<br><input name="kennwort" type="password" size="30" maxlength="30"></p>
</form>
<input width="100" type="button" value="Anmelden" /></p>
<a href="javas*****:history.back()"><input width="100" type="button" value="Zurück" /></p>
</body>
</html>
und für den login
<!DOCTYPE html>
<html>
<head>
<title>Quartett</title>
</head>
<body>
<p>Herzlich Willkommen</p>
<p></p>
<h1>Login</h1>
<form action="input_text.htm">
<p>username:<br><input name="username" type="text" size="30" maxlength="30"></p></form>
<form action="input_password.htm">
<p>Kennwort:<br><input name="kennwort" type="password" size="30" maxlength="30"></p>
</form>
<input width="100" type="button" value="Login" /></p>
<a href="link auf registrieren seite"><input width="100" type="button" value="Registrieren" /></p>
</body>
</html>
|