annotate src/main/webapp/groups/new_group.html @ 22:b1fb0d117877

adding and listing groups via html works now. no editing of group membership yet. no authentication yet.
author casties
date Thu, 20 Sep 2012 17:42:26 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
3
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
5 <head>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
7
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
8 <title>Annotation Server Groups</title>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
9
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
10 </head>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
11
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
12 <body>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
13 <h1>New group</h1>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
14 <form action="../annotations/groups" method="post">
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
15 <table>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
16 <tr>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
17 <td>ID (short name)</td>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
18 <td><input name="id" type="text" /></td>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
19 </tr>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
20 <tr>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
21 <td>Name</td>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
22 <td><input name="name" type="text" /></td>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
23 </tr>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
24 </table>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
25 <input type="submit"/>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
26 </form>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
27 </body>
b1fb0d117877 adding and listing groups via html works now.
casties
parents:
diff changeset
28 </html>