]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/account/MailAdd.java
Make mailadd to a template bases site
[gigi.git] / src / org / cacert / gigi / pages / account / MailAdd.java
index 6c5e17113fcd05bdbaaf56f07622ea689c07c958..3d8ae6150c8e8205e4d0ed39878186c8563edf85 100644 (file)
@@ -1,17 +1,15 @@
 package org.cacert.gigi.pages.account;
 
 import java.io.IOException;
-import java.util.LinkedList;
 
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
-import org.cacert.gigi.output.DataTable;
-import org.cacert.gigi.output.DataTable.Cell;
 import org.cacert.gigi.pages.Page;
 
-public class MailAdd extends Page{
-       public static final String DEFAULT_PATH = "/account/mail/new";
+public class MailAdd extends Page {
+       public static final String DEFAULT_PATH = "/account/mails/add";
+
        public MailAdd(String title) {
                super(title);
        }
@@ -19,15 +17,8 @@ public class MailAdd extends Page{
        @Override
        public void doGet(HttpServletRequest req, HttpServletResponse resp)
                        throws IOException {
-               LinkedList<Cell> cells = new LinkedList<>();
-               cells.add(new Cell("Add Email", true, 2, "class=\"title\""));
-               cells.add(new Cell("Email Address", true));
-               cells.add(new Cell("<input type=\"text\" name=\"newemail\">", false));
-               String trans = getLanguage(req).getTranslation("I own or am authorised to control this email address");
-               cells.add(new Cell("<input type=\"submit\" name=\"process\" value=\""
-                               + trans + "\">", false, 2));
-               DataTable dt = new DataTable(2, cells);
-               dt.output(resp.getWriter(), getLanguage(req));
+               getDefaultTemplate().output(resp.getWriter(), Page.getLanguage(req),
+                               null);
        }
 
 }