~ubuntu-branches/ubuntu/saucy/restlet/saucy

« back to all changes in this revision

Viewing changes to org.restlet.example/src/org/restlet/example/book/restlet/ch07/sec1/sub5/Mail.ftl

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 16:25:45 UTC
  • Revision ID: package-import@ubuntu.com-20120611162545-5w2o0resi5y3pybc
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
<head>
 
3
<title>Example mail</title>
 
4
</head>
 
5
<body>
 
6
<form action="?method=PUT" method="POST" enctype="multipart/form-data">
 
7
<table>
 
8
    <tbody>
 
9
        <tr>
 
10
            <td>Status</td>
 
11
            <td>${status}</td>
 
12
        </tr>
 
13
        <tr>
 
14
            <td>Subject</td>
 
15
            <td><input type="text" name="subject" size="80" value="${subject}"></td>
 
16
        </tr>
 
17
        <tr>
 
18
            <td>Content</td>
 
19
            <td><textarea name="content" rows="10" cols="80">${content}</textarea></td>
 
20
        </tr>
 
21
        <tr>
 
22
            <td>Attachment</td>
 
23
            <td><input name="attachment" type="file"/></a>
 
24
        <tr>
 
25
            <td/>
 
26
            <td><input type="submit" value="Save"></td>
 
27
        </tr>
 
28
    </tbody>
 
29
</table>
 
30
</form>
 
31
</body>
 
32
</html>