diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/webapp/groups/new_group.html	Thu Sep 20 17:42:26 2012 +0200
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
+<title>Annotation Server Groups</title>
+
+</head>
+
+<body>
+  <h1>New group</h1>
+  <form action="../annotations/groups" method="post">
+    <table>
+      <tr>
+        <td>ID (short name)</td>
+        <td><input name="id" type="text" /></td>
+      </tr>
+      <tr>
+        <td>Name</td>
+        <td><input name="name" type="text" /></td>
+      </tr>
+    </table>
+    <input type="submit"/>
+  </form>
+</body>
+</html>