add_bk.tmpl
branchxbelweb
changeset 3 9e7e8b678819
child 4 20c995f13f63
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/add_bk.tmpl	Tue Sep 23 15:11:11 2003 -0400
@@ -0,0 +1,24 @@
+<html>
+  <head>
+    <title>Add a bookmark</title>
+  </head>
+  <body>
+    <h1>Add a bookmark</h1>
+    <form action="add_result.py" method="post" name="add">
+      <fieldset class="bookmark">
+        <label>Nom: <input type="text" name="name"></label><br/>
+        <label>URL: <input type="text" name="url"></label><br/>
+        <label for="desc">Description: </label><br/>
+        <textarea name="desc" rows="5" cols="40"></textarea>
+        <button type="submit" name="submit">Soumettre</button>
+      </fieldset>
+      <fieldset class="keywords">
+        <legend>Mots clés:</legend>
+	<ul>
+	<TMPL_LOOP Keywords>
+	  <li><input type="checkbox" name="kw" value="<TMPL_VAR id>"/><TMPL_VAR keyword></li>
+	</TMPL_LOOP>
+	</ul>
+    </form>
+  </body>
+</html>