view zpt/sendMail_template.zpt @ 0:88009fd07d31

VLP specific additions to ECHO_content product. First checkin.
author casties
date Wed, 17 Apr 2013 14:54:21 +0200
parents
children
line wrap: on
line source

<!-- Example for a send mail form -->
<html>
  <head>
    <title tal:content="template/title">The title</title>
  </head>
  <body>
   <form tal:attributes="action python:here.REQUEST['URL']+'/sendForm'" method=post>
    From:<input type="text" name="fromaddr"><br>
    Subject:  <input type="text" name="subject"><br>
    Comment: <textarea name="content"></textarea><br>
    <input type="submit" value="submit">
    <input type="hidden" name="nextPage" value="../next.html">
   </form>
  </body>
</html>