summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp/templates/blog_entry_add.pt
blob: f06042c0326b30a3d046ed1182e1fc017ec70da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html xmlns="http://www.w3.org/1999/xhtml"
     xmlns:tal="http://xml.zope.org/namespaces/tal">
<head>
</head>
<body>
  <form action="${request.path_url}" method="POST">
    <h2 tal:condition="message" tal:content="message"></h2>
    <h1>Add a blog entry</h1>
    <table border="0">
      <tr> 
        <th>Title</th>
       <td><input type="text" name="title" tal:attributes="value title"/></td>
      </tr>
      <tr>
        <th>Author</th>
        <td><input type="text" name="author" tal:attributes="value author"/></td>
      </tr>
      <tr>
        <th>Body</th>
        <td><textarea name="body" rows="10" cols="80" tal:content="body"
                ></textarea></td>
      </tr>
      <tr>
        <td><input type="submit" name="form.submitted" value="Add"/></td>
      </tr>
    </table>
  </form>
</body>
</html>