]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/ChangePasswordPage.java
Do a dummy "Change-password-form"
[gigi.git] / src / org / cacert / gigi / pages / account / ChangePasswordPage.java
1 package org.cacert.gigi.pages.account;
2
3 import java.io.IOException;
4 import java.util.HashMap;
5
6 import javax.servlet.http.HttpServletRequest;
7 import javax.servlet.http.HttpServletResponse;
8
9 import org.cacert.gigi.pages.Page;
10
11 public class ChangePasswordPage extends Page {
12         public static final String PATH = "/account/password";
13
14         public ChangePasswordPage() {
15                 super("Change Password");
16         }
17
18         @Override
19         public void doGet(HttpServletRequest req, HttpServletResponse resp)
20                         throws IOException {
21                 new ChangeForm().output(resp.getWriter(), getLanguage(req),
22                                 new HashMap<String, Object>());
23         }
24
25 }