X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Fpages%2Faccount%2FChangePasswordPage.java;fp=src%2Forg%2Fcacert%2Fgigi%2Fpages%2Faccount%2FChangePasswordPage.java;h=fd4c9b2d6382338f952c73b1f443e13c9d213d7f;hb=e76545ff41616858934e3ed8894bc1de902a039f;hp=0000000000000000000000000000000000000000;hpb=70ac38c2e844e293d9815b8703341b94b029977a;p=gigi.git diff --git a/src/org/cacert/gigi/pages/account/ChangePasswordPage.java b/src/org/cacert/gigi/pages/account/ChangePasswordPage.java new file mode 100644 index 00000000..fd4c9b2d --- /dev/null +++ b/src/org/cacert/gigi/pages/account/ChangePasswordPage.java @@ -0,0 +1,25 @@ +package org.cacert.gigi.pages.account; + +import java.io.IOException; +import java.util.HashMap; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.cacert.gigi.pages.Page; + +public class ChangePasswordPage extends Page { + public static final String PATH = "/account/password"; + + public ChangePasswordPage() { + super("Change Password"); + } + + @Override + public void doGet(HttpServletRequest req, HttpServletResponse resp) + throws IOException { + new ChangeForm().output(resp.getWriter(), getLanguage(req), + new HashMap()); + } + +}