templates/add_confirm.tmpl
changeset 59 2c5e38748004
parent 57 31271426f879
child 74 6784c4350b41
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/add_confirm.tmpl	Sun Dec 28 12:29:23 2008 -0500
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+  <TMPL_INCLUDE NAME="headers.tmpl">
+  <body>
+    <h1><TMPL_VAR remote_user>'s Confirmation</h1>
+    <form name="confirmation" method="post" action="?action=add">
+      <fieldset>
+        <legend>Bookmark</legend>
+	<input type="hidden" name="action" value="add"/>
+	<input type="hidden" name="id" value="<TMPL_VAR id>"/>
+	<input type="hidden" name="name" value="<TMPL_VAR name>"/>
+	<input type="hidden" name="url" value="<TMPL_VAR url>"/>
+	<input type="hidden" name="desc" value="<TMPL_VAR desc>"/>
+	<input type="hidden" name="newkw"
+	  value="<TMPL_LOOP Keywords><TMPL_VAR keyword>,</TMPL_LOOP>"/>
+	<strong><a href="<TMPL_VAR url>"><TMPL_VAR name></a></strong>
+	<p><TMPL_VAR desc></p>
+	<p>Keywords:
+	  <TMPL_LOOP Keywords>
+	    <TMPL_VAR keyword>;
+	  </TMPL_LOOP>
+	</p>
+	<button name="step" type="submit" value="confirm"><TMPL_VAR confirmation></button>
+	<button name="step" type="submit" value="cancel">Cancel</button>
+    </form>
+  </body>
+</html>
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-namecase-general:t
+sgml-general-insert-case:lower
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:nil
+sgml-parent-document:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vi: syntax=html
+-->