templates/add.html
changeset 18 846026b8422b
parent 3 6d109e3804ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/add.html	Wed Oct 26 21:44:35 2011 +0200
@@ -0,0 +1,27 @@
+<?=header("Content-Type: text/html; charset=UTF-8");?>
+<html>
+<head>
+
+<style type="text/css">
+	form label { display:block; float:left; width:10ex; }
+</style>
+
+</head><body>
+
+[ <a href="?">Home</a> ]
+
+<h1>Adressbuch</h1>
+
+    <p>
+    <form>
+	<label for=name>Name</label>
+	<input  id=name type=text name=name /><br>
+	<label for=tel>Telefon</label>
+	<input  id=tel type=text name=tel /><br>
+	<label for=mail>Mail</label>
+	<input  id=mail type=text name=mail /><br>
+	<input type=hidden name=action value=add />
+	<input type=submit />
+    </form>
+
+</body>