Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created July 30, 2019 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/e87271bf637e27f31ed043563e575e02 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/e87271bf637e27f31ed043563e575e02 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Gastebuch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>G&auml;stebuch</h1>
<p>Hier kannst du uns Informationen und Feedback zu deinem Besuch auf dieser Seite hinterlassen.
Wir freuen uns darauf, von dir zu hh&ouml;ren!</p>
<table>
<form action="gaestebuch.php" method="post">
<tr>
<td>Name</td>
<td>
<input type="text" name="gbName" maxlength="20">
</td>
</tr>
<tr>
<td>E-Mail</td>
<td>
<input type="text" name="gbEmail" maxlength="255">
</td>
</tr>
<tr>
<td>Eintrag</td>
<td>
<textarea rows="6" cols="60" name="gbEintrag" maxlength="450"></textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="btn" value="Senden"/>
</td>
</tr>
</form>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment